2016-09-27 22:01:08 +03:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
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&);
|
2016-05-16 17:34:04 +03:00
|
|
|
static void PrintList(std::vector<cmXCodeObject*> const&, std::ostream& out,
|
2006-03-10 19:13:15 +03:00
|
|
|
PBXType t);
|
2016-05-16 17:34:04 +03:00
|
|
|
static void PrintList(std::vector<cmXCodeObject*> const&, std::ostream& out);
|
2005-09-03 00:29:32 +04:00
|
|
|
};
|
|
|
|
#endif
|