diff options
Diffstat (limited to 'Source/cmEndIfCommand.h')
-rw-r--r-- | Source/cmEndIfCommand.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Source/cmEndIfCommand.h b/Source/cmEndIfCommand.h index b476c72..dfd6049 100644 --- a/Source/cmEndIfCommand.h +++ b/Source/cmEndIfCommand.h @@ -3,7 +3,13 @@ #ifndef cmEndIfCommand_h #define cmEndIfCommand_h -#include "cmIfCommand.h" +#include <cmConfigure.h> +#include <string> +#include <vector> + +#include "cmCommand.h" + +class cmExecutionStatus; /** \class cmEndIfCommand * \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 "endif"; } - - cmTypeMacro(cmEndIfCommand, cmCommand); }; #endif |