summaryrefslogtreecommitdiffstats
path: root/Source/cmElseCommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmElseCommand.h')
-rw-r--r--Source/cmElseCommand.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/Source/cmElseCommand.h b/Source/cmElseCommand.h
index 33f73ee..c0162ad 100644
--- a/Source/cmElseCommand.h
+++ b/Source/cmElseCommand.h
@@ -3,7 +3,13 @@
#ifndef cmElseCommand_h
#define cmElseCommand_h
-#include "cmIfCommand.h"
+#include <cmConfigure.h>
+#include <string>
+#include <vector>
+
+#include "cmCommand.h"
+
+class cmExecutionStatus;
/** \class cmElseCommand
* \brief ends an if block
@@ -34,8 +40,6 @@ public:
* The name of the command as specified in CMakeList.txt.
*/
std::string GetName() const CM_OVERRIDE { return "else"; }
-
- cmTypeMacro(cmElseCommand, cmCommand);
};
#endif