diff options
Diffstat (limited to 'Tests/QtAutogen/complex/Adir/libA.h')
-rw-r--r-- | Tests/QtAutogen/complex/Adir/libA.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Tests/QtAutogen/complex/Adir/libA.h b/Tests/QtAutogen/complex/Adir/libA.h new file mode 100644 index 0000000..c4eb9f7 --- /dev/null +++ b/Tests/QtAutogen/complex/Adir/libA.h @@ -0,0 +1,18 @@ + +#ifndef LIBA_H +#define LIBA_H + +#include "liba_export.h" + +#include <QObject> + +class LIBA_EXPORT LibA : public QObject +{ + Q_OBJECT +public: + explicit LibA(QObject* parent = 0); + + int foo(); +}; + +#endif |