cmXCode21Object.h 663 B

12345678910111213141516171819202122
  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 cmXCode21Object_h
  4. #define cmXCode21Object_h
  5. #include "cmConfigure.h" // IWYU pragma: keep
  6. #include <iosfwd>
  7. #include <vector>
  8. #include "cmXCodeObject.h"
  9. class cmXCode21Object : public cmXCodeObject
  10. {
  11. public:
  12. cmXCode21Object(PBXType ptype, Type type);
  13. void PrintComment(std::ostream&) override;
  14. static void PrintList(std::vector<cmXCodeObject*> const&, std::ostream& out,
  15. PBXType t);
  16. static void PrintList(std::vector<cmXCodeObject*> const&, std::ostream& out);
  17. };
  18. #endif