FIX: stupid pb fixed (close to being medieval'ed by The Ken)
[cmake.git] / Source / cmAbstractFilesCommand.h
blob58e8dbb50d4eb33b01fab453aca90ef2c5fc457e
1 /*=========================================================================
3 Program: Insight Segmentation & Registration Toolkit
4 Module: $RCSfile: cmAbstractFilesCommand.h,v $
5 Language: C++
6 Date: $Date: 2002-01-21 20:30:17 $
7 Version: $Revision: 1.6 $
9 Copyright (c) 2002 Insight Consortium. All rights reserved.
10 See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
12 This software is distributed WITHOUT ANY WARRANTY; without even
13 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 PURPOSE. See the above copyright notices for more information.
16 =========================================================================*/
17 #ifndef cmAbstractFilesCommand_h
18 #define cmAbstractFilesCommand_h
20 #include "cmStandardIncludes.h"
21 #include "cmCommand.h"
23 class cmAbstractFilesCommand : public cmCommand
25 public:
26 virtual cmCommand* Clone()
28 return new cmAbstractFilesCommand;
31 /**
32 * This is called when the command is first encountered in
33 * the input file.
35 virtual bool InitialPass(std::vector<std::string> const& args);
37 /**
38 * The name of the command as specified in CMakeList.txt.
40 virtual const char* GetName() { return "ABSTRACT_FILES";}
42 /**
43 * Succinct documentation.
45 virtual const char* GetTerseDocumentation()
47 return "A list of abstract classes, useful for wrappers.";
50 /**
51 * Longer documentation.
53 virtual const char* GetFullDocumentation()
55 return
56 "ABSTRACT_FILES(file1 file2 ..)";
59 cmTypeMacro(cmAbstractFilesCommand, cmCommand);
64 #endif