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