2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2007-08-14 19:45:15 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2007-08-14 19:45:15 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
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
|