diff options
author | Ken Martin <ken.martin@kitware.com> | 2005-01-21 14:38:04 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2005-01-21 14:38:04 (GMT) |
commit | 0c225eb5b969e4f4d93d12dc337927abb25e6878 (patch) | |
tree | ada0f380576e084e626e913ed92ffbf7f2246828 /Source/cmEndWhileCommand.h | |
parent | 819c910ee3485d64e829e0f410fdaaca479ae899 (diff) | |
download | CMake-0c225eb5b969e4f4d93d12dc337927abb25e6878.zip CMake-0c225eb5b969e4f4d93d12dc337927abb25e6878.tar.gz CMake-0c225eb5b969e4f4d93d12dc337927abb25e6878.tar.bz2 |
ENH: added while command
Diffstat (limited to 'Source/cmEndWhileCommand.h')
-rw-r--r-- | Source/cmEndWhileCommand.h | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/Source/cmEndWhileCommand.h b/Source/cmEndWhileCommand.h new file mode 100644 index 0000000..1f8453e --- /dev/null +++ b/Source/cmEndWhileCommand.h @@ -0,0 +1,88 @@ +/*========================================================================= + + Program: CMake - Cross-Platform Makefile Generator + Module: $RCSfile$ + Language: C++ + Date: $Date$ + Version: $Revision$ + + Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved. + See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details. + + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + PURPOSE. See the above copyright notices for more information. + +=========================================================================*/ +#ifndef cmEndWhileCommand_h +#define cmEndWhileCommand_h + +#include "cmCommand.h" + +/** \class cmEndWhileCommand + * \brief ends an if block + * + * cmEndWhileCommand ends an if block + */ +class cmEndWhileCommand : public cmCommand +{ +public: + /** + * This is a virtual constructor for the command. + */ + virtual cmCommand* Clone() + { + return new cmEndWhileCommand; + } + + /** + * Override cmCommand::InvokeInitialPass to get arguments before + * expansion. + */ + virtual bool InvokeInitialPass(std::vector<cmListFileArgument> const&); + + /** + * This is called when the command is first encountered in + * the CMakeLists.txt file. + */ + virtual bool InitialPass(std::vector<std::string> const&) {return false;} + + /** + * This determines if the command gets propagated down + * to makefiles located in subdirectories. + */ + virtual bool IsInherited() {return true;} + + /** + * This determines if the command is invoked when in script mode. + */ + virtual bool IsScriptable() { return true; } + + /** + * The name of the command as specified in CMakeList.txt. + */ + virtual const char* GetName() { return "ENDWHILE";} + + /** + * Succinct documentation. + */ + virtual const char* GetTerseDocumentation() + { + return "Ends a list of commands in a WHILE block."; + } + + /** + * More documentation. + */ + virtual const char* GetFullDocumentation() + { + return + " ENDWHILE(expression)\n" + "See WHILE command."; + } + + cmTypeMacro(cmEndWhileCommand, cmCommand); +}; + + +#endif |