diff options
Diffstat (limited to 'Tests/QtAutomoc/foo.h')
-rw-r--r-- | Tests/QtAutomoc/foo.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Tests/QtAutomoc/foo.h b/Tests/QtAutomoc/foo.h new file mode 100644 index 0000000..7323ff3 --- /dev/null +++ b/Tests/QtAutomoc/foo.h @@ -0,0 +1,15 @@ +#ifndef FOO_H +#define FOO_H + +#include <QObject> + +class Foo : public QObject +{ + Q_OBJECT + public: + Foo(); + public slots: + void doFoo(); +}; + +#endif |