90 lines
2.1 KiB
C++
90 lines
2.1 KiB
C++
/*=========================================================================
|
|
|
|
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
|