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