diff options
author | Regina Pfeifer <regina@mailbox.org> | 2019-07-23 21:00:28 (GMT) |
---|---|---|
committer | Regina Pfeifer <regina@mailbox.org> | 2019-07-30 15:21:50 (GMT) |
commit | c76500949d3fcf5ff83ac6e7f1d565f5d786c5f0 (patch) | |
tree | 4a42eb66c6ea5c4b5b51919e015d198da427a3a4 /Source/cmWhileCommand.h | |
parent | 89dc04af1d55a343a44e7c2de4bb92a101dd6138 (diff) | |
download | CMake-c76500949d3fcf5ff83ac6e7f1d565f5d786c5f0.zip CMake-c76500949d3fcf5ff83ac6e7f1d565f5d786c5f0.tar.gz CMake-c76500949d3fcf5ff83ac6e7f1d565f5d786c5f0.tar.bz2 |
cm*FunctionBlocker: Move to source file
Diffstat (limited to 'Source/cmWhileCommand.h')
-rw-r--r-- | Source/cmWhileCommand.h | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/Source/cmWhileCommand.h b/Source/cmWhileCommand.h index 2257799..beca652 100644 --- a/Source/cmWhileCommand.h +++ b/Source/cmWhileCommand.h @@ -7,28 +7,8 @@ #include <vector> -#include "cmFunctionBlocker.h" -#include "cmListFileCache.h" - class cmExecutionStatus; -class cmMakefile; - -class cmWhileFunctionBlocker : public cmFunctionBlocker -{ -public: - cmWhileFunctionBlocker(cmMakefile* mf); - ~cmWhileFunctionBlocker() override; - bool IsFunctionBlocked(const cmListFileFunction& lff, cmMakefile& mf, - cmExecutionStatus&) override; - bool ShouldRemove(const cmListFileFunction& lff, cmMakefile& mf) override; - - std::vector<cmListFileArgument> Args; - std::vector<cmListFileFunction> Functions; - -private: - cmMakefile* Makefile; - int Depth; -}; +struct cmListFileArgument; /// \brief Starts a while loop bool cmWhileCommand(std::vector<cmListFileArgument> const& args, |