diff options
author | Gabor Bencze <b.gabor98@gmail.com> | 2019-08-21 18:04:45 (GMT) |
---|---|---|
committer | Gabor Bencze <b.gabor98@gmail.com> | 2019-08-25 12:31:16 (GMT) |
commit | 7533e47cccb8828885de518e40d58b629200d23d (patch) | |
tree | fcdb96586094c3c9234fc8bade124566c4799f5c /Source/cmLoadCommandCommand.h | |
parent | 9d6fc3f5ed527874d44a111eb80c09e740710e48 (diff) | |
download | CMake-7533e47cccb8828885de518e40d58b629200d23d.zip CMake-7533e47cccb8828885de518e40d58b629200d23d.tar.gz CMake-7533e47cccb8828885de518e40d58b629200d23d.tar.bz2 |
cmCommand refactor: cmLoadCommandCommand
Diffstat (limited to 'Source/cmLoadCommandCommand.h')
-rw-r--r-- | Source/cmLoadCommandCommand.h | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/Source/cmLoadCommandCommand.h b/Source/cmLoadCommandCommand.h index d81cefb..f5fd754 100644 --- a/Source/cmLoadCommandCommand.h +++ b/Source/cmLoadCommandCommand.h @@ -8,21 +8,9 @@ #include <string> #include <vector> -#include "cm_memory.hxx" - -#include "cmCommand.h" - class cmExecutionStatus; -class cmLoadCommandCommand : public cmCommand -{ -public: - std::unique_ptr<cmCommand> Clone() override - { - return cm::make_unique<cmLoadCommandCommand>(); - } - bool InitialPass(std::vector<std::string> const& args, - cmExecutionStatus& status) override; -}; +bool cmLoadCommandCommand(std::vector<std::string> const& args, + cmExecutionStatus& status); #endif |