cmGhsMultiGpj.h 598 B

1234567891011121314151617181920212223242526272829
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file Copyright.txt or https://cmake.org/licensing for details. */
  3. #ifndef cmGhsMultiGpj_h
  4. #define cmGhsMultiGpj_h
  5. #include "cmConfigure.h" // IWYU pragma: keep
  6. #include <iosfwd>
  7. class cmGeneratedFileStream;
  8. class GhsMultiGpj
  9. {
  10. public:
  11. enum Types
  12. {
  13. INTERGRITY_APPLICATION,
  14. LIBRARY,
  15. PROJECT,
  16. PROGRAM,
  17. REFERENCE,
  18. SUBPROJECT
  19. };
  20. static void WriteGpjTag(Types const gpjType, std::ostream& fout);
  21. static const char* GetGpjTag(Types const gpjType);
  22. };
  23. #endif // ! cmGhsMultiGpjType_h