main.cpp 687 B

12345678910111213141516171819202122232425262728293031
  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.hh"
  10. #include "object.hpp"
  11. #include "object.hxx"
  12. #include "object_upper_ext.H"
  13. int main(int argv, char** args)
  14. {
  15. // Item instances
  16. ::Item item;
  17. ::aaa::Item aaa_item;
  18. ::aaa::bbb::Item aaa_bbb_item;
  19. ::bbb::Item bbb_item;
  20. ::bbb::aaa::Item bbb_aaa_item;
  21. ::ccc::Item ccc_item;
  22. // Object instances
  23. ::Object_h obj_h;
  24. ::Object_hh obj_hh;
  25. ::Object_hplpl obj_hplpl;
  26. ::Object_hpp obj_hpp;
  27. ::Object_hxx obj_hxx;
  28. ::Object_Upper_Ext_H obj_upper_ext_h;
  29. return 0;
  30. }