summaryrefslogtreecommitdiff
path: root/Source/cmSiteNameCommand.h
diff options
context:
space:
mode:
authorGabor Bencze <b.gabor98@gmail.com>2019-08-04 19:11:41 +0200
committerBrad King <brad.king@kitware.com>2019-08-20 14:42:20 -0400
commitb316d0d417761dc16d6d7b6ae41ac56b4509b949 (patch)
tree66044d4da1509c14cd9af03ff7781c482c667286 /Source/cmSiteNameCommand.h
parentb3aa789630c6411300080ec05d58e6cd9dcb7a2b (diff)
downloadcmake-b316d0d417761dc16d6d7b6ae41ac56b4509b949.tar.gz
cmCommand refactor: cmSiteNameCommand
Diffstat (limited to 'Source/cmSiteNameCommand.h')
-rw-r--r--Source/cmSiteNameCommand.h26
1 files changed, 3 insertions, 23 deletions
diff --git a/Source/cmSiteNameCommand.h b/Source/cmSiteNameCommand.h
index 0190abb7c2..e8fc608077 100644
--- a/Source/cmSiteNameCommand.h
+++ b/Source/cmSiteNameCommand.h
@@ -8,34 +8,14 @@
#include <string>
#include <vector>
-#include "cm_memory.hxx"
-
-#include "cmCommand.h"
-
class cmExecutionStatus;
-/** \class cmSiteNameCommand
+/**
* \brief site_name command
*
* cmSiteNameCommand implements the site_name CMake command
*/
-class cmSiteNameCommand : public cmCommand
-{
-public:
- /**
- * This is a virtual constructor for the command.
- */
- std::unique_ptr<cmCommand> Clone() override
- {
- return cm::make_unique<cmSiteNameCommand>();
- }
-
- /**
- * This is called when the command is first encountered in
- * the CMakeLists.txt file.
- */
- bool InitialPass(std::vector<std::string> const& args,
- cmExecutionStatus& status) override;
-};
+bool cmSiteNameCommand(std::vector<std::string> const& args,
+ cmExecutionStatus& status);
#endif