2005-09-03 00: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-05-12 22:36:39 +04:00
|
|
|
static void PrintList(std::vector<cmXCodeObject*> const&,
|
|
|
|
std::ostream& out,
|
2006-03-10 19:13:15 +03:00
|
|
|
PBXType t);
|
2006-05-12 22:36:39 +04:00
|
|
|
static void PrintList(std::vector<cmXCodeObject*> const&,
|
|
|
|
std::ostream& out);
|
2005-09-03 00:29:32 +04:00
|
|
|
};
|
|
|
|
#endif
|