diff options
Diffstat (limited to 'Tests/QtAutogen/StaticLibraryCycle/c.h')
-rw-r--r-- | Tests/QtAutogen/StaticLibraryCycle/c.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Tests/QtAutogen/StaticLibraryCycle/c.h b/Tests/QtAutogen/StaticLibraryCycle/c.h new file mode 100644 index 000000000..20f3725e9 --- /dev/null +++ b/Tests/QtAutogen/StaticLibraryCycle/c.h @@ -0,0 +1,13 @@ +#ifndef CLASSC_HPP +#define CLASSC_HPP + +#include <QObject> + +class C : public QObject +{ + Q_OBJECT +public: + C(); +}; + +#endif |