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