mirror of
https://github.com/reactos/CMake.git
synced 2024-12-17 16:46:37 +00:00
10 lines
115 B
C++
10 lines
115 B
C++
|
|
#include <QObject>
|
|
|
|
class Empty : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit Empty(QObject *parent = 0) {}
|
|
};
|