diff options
Diffstat (limited to 'Tests/Qt4Targets/main_wrap_test.cpp')
-rw-r--r-- | Tests/Qt4Targets/main_wrap_test.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Tests/Qt4Targets/main_wrap_test.cpp b/Tests/Qt4Targets/main_wrap_test.cpp new file mode 100644 index 0000000..21edc7b --- /dev/null +++ b/Tests/Qt4Targets/main_wrap_test.cpp @@ -0,0 +1,11 @@ + +#include <QObject> + +#include "mywrapobject.h" + +int main(int argc, char **argv) +{ + MyWrapObject mwo; + mwo.objectName(); + return 0; +} |