Imported Upstream version 2.8.12.2
[platform/upstream/cmake.git] / Source / cmXCode21Object.h
1 /*============================================================================
2   CMake - Cross Platform Makefile Generator
3   Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
4
5   Distributed under the OSI-approved BSD License (the "License");
6   see accompanying file Copyright.txt for details.
7
8   This software is distributed WITHOUT ANY WARRANTY; without even the
9   implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10   See the License for more information.
11 ============================================================================*/
12 #ifndef cmXCode21Object_h
13 #define cmXCode21Object_h
14
15 #include "cmXCodeObject.h"
16
17 class cmXCode21Object : public cmXCodeObject
18 {
19 public:
20   cmXCode21Object(PBXType ptype, Type type);
21   virtual void PrintComment(std::ostream&);
22   static void PrintList(std::vector<cmXCodeObject*> const&,
23                         std::ostream& out,
24                         PBXType t);
25   static void PrintList(std::vector<cmXCodeObject*> const&,
26                         std::ostream& out);
27 };
28 #endif