CMake/Source/cmXCode21Object.h

29 lines
1.0 KiB
C
Raw Normal View History

/*============================================================================
CMake - Cross Platform Makefile Generator
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
Distributed under the OSI-approved BSD License (the "License");
see accompanying file Copyright.txt for details.
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