summaryrefslogtreecommitdiff
path: root/Tests/Qt4And5Automoc/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/Qt4And5Automoc/main.cpp')
-rw-r--r--Tests/Qt4And5Automoc/main.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/Tests/Qt4And5Automoc/main.cpp b/Tests/Qt4And5Automoc/main.cpp
new file mode 100644
index 000000000..00fd64153
--- /dev/null
+++ b/Tests/Qt4And5Automoc/main.cpp
@@ -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;
+}