diff options
Diffstat (limited to 'Tests/QtAutogen/ObjectLibrary/main.cpp')
-rw-r--r-- | Tests/QtAutogen/ObjectLibrary/main.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Tests/QtAutogen/ObjectLibrary/main.cpp b/Tests/QtAutogen/ObjectLibrary/main.cpp new file mode 100644 index 0000000..cacf0fd --- /dev/null +++ b/Tests/QtAutogen/ObjectLibrary/main.cpp @@ -0,0 +1,13 @@ +#include "a/classa.h" +#include "b/classb.h" + +int main(int argc, char** argv) +{ + ClassA a; + a.slotDoSomething(); + + ClassB b; + b.slotDoSomething(); + + return 0; +} |