summaryrefslogtreecommitdiff
path: root/Source/cmUnsetCommand.h
diff options
context:
space:
mode:
authorGabor Bencze <b.gabor98@gmail.com>2019-08-09 11:38:18 +0200
committerBrad King <brad.king@kitware.com>2019-08-20 14:42:20 -0400
commitc33c52bb327d448868cff6aff6d83c786bc81e7e (patch)
tree821cc538d6e4ee13818477259d2f363634409c35 /Source/cmUnsetCommand.h
parentb316d0d417761dc16d6d7b6ae41ac56b4509b949 (diff)
downloadcmake-c33c52bb327d448868cff6aff6d83c786bc81e7e.tar.gz
cmCommand refactor: cmUnsetCommand
Diffstat (limited to 'Source/cmUnsetCommand.h')
-rw-r--r--Source/cmUnsetCommand.h26
1 files changed, 3 insertions, 23 deletions
diff --git a/Source/cmUnsetCommand.h b/Source/cmUnsetCommand.h
index 9b78d4443c..be4c166e83 100644
--- a/Source/cmUnsetCommand.h
+++ b/Source/cmUnsetCommand.h
@@ -8,34 +8,14 @@
#include <string>
#include <vector>
-#include "cm_memory.hxx"
-
-#include "cmCommand.h"
-
class cmExecutionStatus;
-/** \class cmUnsetCommand
+/**
* \brief Unset a CMAKE variable
*
* cmUnsetCommand unsets or removes a variable.
*/
-class cmUnsetCommand : public cmCommand
-{
-public:
- /**
- * This is a virtual constructor for the command.
- */
- std::unique_ptr<cmCommand> Clone() override
- {
- return cm::make_unique<cmUnsetCommand>();
- }
-
- /**
- * 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 cmUnsetCommand(std::vector<std::string> const& args,
+ cmExecutionStatus& status);
#endif