1 /*=========================================================================
3 Program: Insight Segmentation & Registration Toolkit
4 Module: $RCSfile: cmEndIfCommand.h,v $
6 Date: $Date: 2002-01-21 20:30:23 $
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 cmEndIfCommand_h
18 #define cmEndIfCommand_h
20 #include "cmIfCommand.h"
22 /** \class cmEndIfCommand
23 * \brief ends an if block
25 * cmEndIfCommand ends an if block
27 class cmEndIfCommand
: public cmCommand
31 * This is a virtual constructor for the command.
33 virtual cmCommand
* Clone()
35 return new cmEndIfCommand
;
39 * This is called when the command is first encountered in
40 * the CMakeLists.txt file.
42 virtual bool InitialPass(std::vector
<std::string
> const& args
);
45 * This determines if the command gets propagated down
46 * to makefiles located in subdirectories.
48 virtual bool IsInherited() {return true;}
51 * The name of the command as specified in CMakeList.txt.
53 virtual const char* GetName() { return "ENDIF";}
56 * Succinct documentation.
58 virtual const char* GetTerseDocumentation()
60 return "ends an if block";
66 virtual const char* GetFullDocumentation()
72 cmTypeMacro(cmEndIfCommand
, cmCommand
);