resolve cyclic dependency with zstd
[platform/upstream/cmake.git] / Source / cmXCode21Object.h
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
5 #include "cmConfigure.h" // IWYU pragma: keep
6
7 #include <iosfwd>
8 #include <memory>
9 #include <string>
10 #include <vector>
11
12 #include "cmXCodeObject.h"
13
14 class cmXCode21Object : public cmXCodeObject
15 {
16 public:
17   cmXCode21Object(PBXType ptype, Type type, std::string id);
18   void PrintComment(std::ostream&) override;
19   static void PrintList(std::vector<std::unique_ptr<cmXCodeObject>> const&,
20                         std::ostream& out, PBXType t);
21   static void PrintList(std::vector<std::unique_ptr<cmXCodeObject>> const&,
22                         std::ostream& out);
23 };