diff options
author | Gabor Bencze <b.gabor98@gmail.com> | 2019-07-25 17:12:23 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-08-20 18:42:19 (GMT) |
commit | 40ba0addac09b7389d7c554d5c6e9eed74f377e3 (patch) | |
tree | 2ca5b07c4e59c2d3226498ea2262b25dc8d1d242 /Source/cmGetCMakePropertyCommand.h | |
parent | 9bbe95a0e71e6658a37fe9e755577c80ffa2da9c (diff) | |
download | CMake-40ba0addac09b7389d7c554d5c6e9eed74f377e3.zip CMake-40ba0addac09b7389d7c554d5c6e9eed74f377e3.tar.gz CMake-40ba0addac09b7389d7c554d5c6e9eed74f377e3.tar.bz2 |
cmCommand refactor: cmGetCMakePropertyCommand
Diffstat (limited to 'Source/cmGetCMakePropertyCommand.h')
-rw-r--r-- | Source/cmGetCMakePropertyCommand.h | 21 |
1 files changed, 2 insertions, 19 deletions
diff --git a/Source/cmGetCMakePropertyCommand.h b/Source/cmGetCMakePropertyCommand.h index 7790a6b..7a6728c 100644 --- a/Source/cmGetCMakePropertyCommand.h +++ b/Source/cmGetCMakePropertyCommand.h @@ -8,26 +8,9 @@ #include <string> #include <vector> -#include "cm_memory.hxx" - -#include "cmCommand.h" - class cmExecutionStatus; -class cmGetCMakePropertyCommand : public cmCommand -{ -public: - std::unique_ptr<cmCommand> Clone() override - { - return cm::make_unique<cmGetCMakePropertyCommand>(); - } - - /** - * This is called when the command is first encountered in - * the input file. - */ - bool InitialPass(std::vector<std::string> const& args, - cmExecutionStatus& status) override; -}; +bool cmGetCMakePropertyCommand(std::vector<std::string> const& args, + cmExecutionStatus& status); #endif |