diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2005-09-02 20:29:32 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2005-09-02 20:29:32 (GMT) |
commit | 6b4c142c7dfe60e7e9b5cccfc4e44ae808b54b75 (patch) | |
tree | b25e19e52ff57671a63be2fb5f76e0dc87dd2995 /Source/cmXCode21Object.h | |
parent | 389333967b157e40b6846c964699a13ab5ba6c99 (diff) | |
download | CMake-6b4c142c7dfe60e7e9b5cccfc4e44ae808b54b75.zip CMake-6b4c142c7dfe60e7e9b5cccfc4e44ae808b54b75.tar.gz CMake-6b4c142c7dfe60e7e9b5cccfc4e44ae808b54b75.tar.bz2 |
ENH: add real support for Xcode21
Diffstat (limited to 'Source/cmXCode21Object.h')
-rw-r--r-- | Source/cmXCode21Object.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Source/cmXCode21Object.h b/Source/cmXCode21Object.h new file mode 100644 index 0000000..caa316b --- /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 |