diff options
Diffstat (limited to 'Tests/Qt4And5Automoc/main.cpp.in')
-rw-r--r-- | Tests/Qt4And5Automoc/main.cpp.in | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Tests/Qt4And5Automoc/main.cpp.in b/Tests/Qt4And5Automoc/main.cpp.in new file mode 100644 index 0000000..00fd641 --- /dev/null +++ b/Tests/Qt4And5Automoc/main.cpp.in @@ -0,0 +1,18 @@ + +#include <QObject> + +class SomeObject : public QObject +{ + Q_OBJECT +public: + explicit SomeObject(QObject *parent = 0) + : QObject(parent) + { + + } +}; + +int main(int argc, char **argv) +{ + return 0; +} |