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