summaryrefslogtreecommitdiff
path: root/Source/cmXCode21Object.h
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2005-09-02 16:29:32 -0400
committerBill Hoffman <bill.hoffman@kitware.com>2005-09-02 16:29:32 -0400
commit6b4c142c7dfe60e7e9b5cccfc4e44ae808b54b75 (patch)
treeb25e19e52ff57671a63be2fb5f76e0dc87dd2995 /Source/cmXCode21Object.h
parent389333967b157e40b6846c964699a13ab5ba6c99 (diff)
downloadcmake-6b4c142c7dfe60e7e9b5cccfc4e44ae808b54b75.tar.gz
ENH: add real support for Xcode21
Diffstat (limited to 'Source/cmXCode21Object.h')
-rw-r--r--Source/cmXCode21Object.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/Source/cmXCode21Object.h b/Source/cmXCode21Object.h
new file mode 100644
index 0000000000..caa316b7d8
--- /dev/null
+++ b/Source/cmXCode21Object.h
@@ -0,0 +1,14 @@
+#ifndef cmXCode21Object_h
+#define cmXCode21Object_h
+
+#include "cmXCodeObject.h"
+
+class cmXCode21Object : public cmXCodeObject
+{
+public:
+ cmXCode21Object(PBXType ptype, Type type);
+ virtual void PrintComment(std::ostream&);
+ static void PrintList(std::vector<cmXCodeObject*> const&, std::ostream& out, PBXType t);
+ static void PrintList(std::vector<cmXCodeObject*> const&, std::ostream& out);
+};
+#endif