main.cpp 574 B

123456789101112131415161718192021222324252627
  1. #include "aaa/bbb/item.hpp"
  2. #include "aaa/item.hpp"
  3. #include "bbb/aaa/item.hpp"
  4. #include "bbb/item.hpp"
  5. #include "ccc/item.hpp"
  6. #include "item.hpp"
  7. #include "object.h"
  8. #include "object.h++"
  9. #include "object.hpp"
  10. #include "object.hxx"
  11. int main(int argv, char** args)
  12. {
  13. // Item instances
  14. ::Item item;
  15. ::aaa::Item aaa_item;
  16. ::aaa::bbb::Item aaa_bbb_item;
  17. ::bbb::Item bbb_item;
  18. ::bbb::aaa::Item bbb_aaa_item;
  19. ::ccc::Item ccc_item;
  20. // Object instances
  21. ::Object_h obj_h;
  22. ::Object_hplpl obj_hplpl;
  23. ::Object_hpp obj_hpp;
  24. ::Object_hxx obj_hxx;
  25. return 0;
  26. }