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