diff options
Diffstat (limited to 'Source/cmMathCommand.h')
-rw-r--r-- | Source/cmMathCommand.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/Source/cmMathCommand.h b/Source/cmMathCommand.h new file mode 100644 index 0000000..0c6c76b --- /dev/null +++ b/Source/cmMathCommand.h @@ -0,0 +1,35 @@ +/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying + file Copyright.txt or https://cmake.org/licensing for details. */ +#ifndef cmMathCommand_h +#define cmMathCommand_h + +#include "cmConfigure.h" // IWYU pragma: keep + +#include <string> +#include <vector> + +#include "cmCommand.h" + +class cmExecutionStatus; + +/// Mathematical expressions: math(EXPR ...) command. +class cmMathCommand : public cmCommand +{ +public: + /** + * This is a virtual constructor for the command. + */ + cmCommand* Clone() override { return new cmMathCommand; } + + /** + * 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; + +protected: + bool HandleExprCommand(std::vector<std::string> const& args); +}; + +#endif |