diff options
Diffstat (limited to 'Source/cmUnsetCommand.h')
-rw-r--r-- | Source/cmUnsetCommand.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Source/cmUnsetCommand.h b/Source/cmUnsetCommand.h index b3f045a..5b07202 100644 --- a/Source/cmUnsetCommand.h +++ b/Source/cmUnsetCommand.h @@ -3,8 +3,14 @@ #ifndef cmUnsetCommand_h #define cmUnsetCommand_h +#include <cmConfigure.h> +#include <string> +#include <vector> + #include "cmCommand.h" +class cmExecutionStatus; + /** \class cmUnsetCommand * \brief Unset a CMAKE variable * @@ -34,8 +40,6 @@ public: * The name of the command as specified in CMakeList.txt. */ std::string GetName() const CM_OVERRIDE { return "unset"; } - - cmTypeMacro(cmUnsetCommand, cmCommand); }; #endif |