diff options
author | Brad King <brad.king@kitware.com> | 2001-03-01 21:47:05 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2001-03-01 21:47:05 (GMT) |
commit | dc72655414eb8a611524b6480dad92d46b08fecb (patch) | |
tree | eae01169b53d5e67156e5562ed53b4e447947658 /Source/cmCableCloseNamespaceCommand.h | |
parent | af30fe67458fd26054696ce018f7ae6faaebcca4 (diff) | |
download | CMake-dc72655414eb8a611524b6480dad92d46b08fecb.zip CMake-dc72655414eb8a611524b6480dad92d46b08fecb.tar.gz CMake-dc72655414eb8a611524b6480dad92d46b08fecb.tar.bz2 |
ENH: Change to new CABLE command architecture. CABLE configuration code is now generated on the first pass, during the Invoke() calls.
Diffstat (limited to 'Source/cmCableCloseNamespaceCommand.h')
-rw-r--r-- | Source/cmCableCloseNamespaceCommand.h | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/Source/cmCableCloseNamespaceCommand.h b/Source/cmCableCloseNamespaceCommand.h new file mode 100644 index 0000000..1b2d45b --- /dev/null +++ b/Source/cmCableCloseNamespaceCommand.h @@ -0,0 +1,89 @@ +/*========================================================================= + + Program: Insight Segmentation & Registration Toolkit + Module: $RCSfile$ + Language: C++ + Date: $Date$ + Version: $Revision$ + + + Copyright (c) 2000 National Library of Medicine + All rights reserved. + + See COPYRIGHT.txt for copyright details. + +=========================================================================*/ +#ifndef cmCableCloseNamespaceCommand_h +#define cmCableCloseNamespaceCommand_h + +#include "cmStandardIncludes.h" +#include "cmCableCommand.h" + +/** \class cmCableCloseNamespaceCommand + * \brief Define a command that closes a CABLE Namespace. + * + * cmCableCloseNamespaceCommand is used to generate CABLE Namespace + * close tags in the configuration file. + */ +class cmCableCloseNamespaceCommand : public cmCableCommand +{ +public: + /** + * This is a virtual constructor for the command. + */ + virtual cmCommand* Clone() + { + return new cmCableCloseNamespaceCommand; + } + + /** + * This is called when the command is first encountered in + * the CMakeLists.txt file. + */ + virtual bool Invoke(std::vector<std::string>& args); + + /** + * This determines if the command gets propagated down + * to makefiles located in subdirectories. + */ + virtual bool IsInherited() + {return true;} + + /** + * The name of the command as specified in CMakeList.txt. + */ + virtual const char* GetName() { return "CABLE_CLOSE_NAMESPACE";} + + /** + * Succinct documentation. + */ + virtual const char* GetTerseDocumentation() + { + return "Close a CABLE Namespace"; + } + + /** + * More documentation. + */ + virtual const char* GetFullDocumentation() + { + return + "CABLE_CLOSE_NAMESPACE(namespace_name)\n" + "Close the given namespace in the generated configuration file.\n" + "There must be a matching CABLE_OPEN_NAMESPACE(namespace_name)\n" + "called with the same name."; + } + + cmTypeMacro(cmCableCloseNamespaceCommand, cmCableCommand); +private: + void WriteNamespaceFooter() const; +private: + /** + * The name of the namespace to setup. + */ + std::string m_NamespaceName; +}; + + + +#endif |