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