ENH: add real support for Xcode21

This commit is contained in:
Bill Hoffman
2005-09-02 16:29:32 -04:00
parent 389333967b
commit 6b4c142c7d
9 changed files with 342 additions and 31 deletions

14
Source/cmXCode21Object.h Normal file
View File

@@ -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