1
0

main.cpp 214 B

1234567891011121314
  1. #include "ObjA.hpp"
  2. #include "ObjB.hpp"
  3. #include "ObjC.hpp"
  4. int main(int argv, char** args)
  5. {
  6. ObjA objA;
  7. ObjB objB;
  8. ObjC objC;
  9. return 0;
  10. }
  11. // Header in global subdirectory
  12. #include "subB/moc_SubObjB.cpp"