diff options
Diffstat (limited to 'Tests/QtAutogen/StaticLibraryCycle/a.h')
-rw-r--r-- | Tests/QtAutogen/StaticLibraryCycle/a.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Tests/QtAutogen/StaticLibraryCycle/a.h b/Tests/QtAutogen/StaticLibraryCycle/a.h new file mode 100644 index 0000000..f24398e --- /dev/null +++ b/Tests/QtAutogen/StaticLibraryCycle/a.h @@ -0,0 +1,15 @@ +#ifndef CLASSA_HPP +#define CLASSA_HPP + +#include <QObject> + +class A : public QObject +{ + Q_OBJECT + static bool recursed; + +public: + A(); +}; + +#endif |