2005-09-02 16:29:32 -04:00
|
|
|
#ifndef cmXCode21Object_h
|
|
|
|
#define cmXCode21Object_h
|
|
|
|
|
|
|
|
#include "cmXCodeObject.h"
|
|
|
|
|
|
|
|
class cmXCode21Object : public cmXCodeObject
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cmXCode21Object(PBXType ptype, Type type);
|
|
|
|
virtual void PrintComment(std::ostream&);
|
2006-03-10 11:13:15 -05:00
|
|
|
static void PrintList(std::vector<cmXCodeObject*> const&, std::ostream& out,
|
|
|
|
PBXType t);
|
2005-09-02 16:29:32 -04:00
|
|
|
static void PrintList(std::vector<cmXCodeObject*> const&, std::ostream& out);
|
|
|
|
};
|
|
|
|
#endif
|