common.cpp.in 729 B

1234567891011121314151617181920212223242526272829303132
  1. #include "DualSub/Second/Second.hpp"
  2. #include "DualSubMocked.hpp"
  3. #include "ExternDot.hpp"
  4. #include "ExternDotGenerated.hpp"
  5. #include "None.hpp"
  6. #include "OtherUnderscore.hpp"
  7. #include "OtherUnderscoreSub.hpp"
  8. #include "OwnDot.hpp"
  9. #include "OwnDotUnderscore.hpp"
  10. #include "OwnUnderscore.hpp"
  11. #include "InIncludes/SubOwnDot.hpp"
  12. bool @COMMON_FUNCTION_NAME@()
  13. {
  14. None objNone;
  15. OwnUnderscore objOwnUnderscore;
  16. OwnDot objOwnDot;
  17. OwnDotUnderscore objOwnDotUnderscore;
  18. OtherUnderscore objOtherUnderscore;
  19. OtherUnderscoreSub objOtherUnderscoreSub;
  20. Second second;
  21. DualSubMocked dualSubMocked;
  22. ExternDot objExternDot;
  23. ExternDotGenerated objGeneratedExternDot;
  24. InIncludes::SubOwnDot subOwnDot;
  25. return true;
  26. }