summaryrefslogtreecommitdiffstats
path: root/Source/cmMathCommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmMathCommand.h')
-rw-r--r--Source/cmMathCommand.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/Source/cmMathCommand.h b/Source/cmMathCommand.h
index 6fa7389..9b49b21 100644
--- a/Source/cmMathCommand.h
+++ b/Source/cmMathCommand.h
@@ -3,8 +3,14 @@
#ifndef cmMathCommand_h
#define cmMathCommand_h
+#include <cmConfigure.h>
+#include <string>
+#include <vector>
+
#include "cmCommand.h"
+class cmExecutionStatus;
+
/// Mathematical expressions: math(EXPR ...) command.
class cmMathCommand : public cmCommand
{
@@ -31,8 +37,6 @@ public:
*/
std::string GetName() const CM_OVERRIDE { return "math"; }
- cmTypeMacro(cmMathCommand, cmCommand);
-
protected:
bool HandleExprCommand(std::vector<std::string> const& args);
};