diff options
Diffstat (limited to 'Source/cmBreakCommand.h')
-rw-r--r-- | Source/cmBreakCommand.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Source/cmBreakCommand.h b/Source/cmBreakCommand.h index ab58ab2..5113e18 100644 --- a/Source/cmBreakCommand.h +++ b/Source/cmBreakCommand.h @@ -3,8 +3,14 @@ #ifndef cmBreakCommand_h #define cmBreakCommand_h +#include <cmConfigure.h> +#include <string> +#include <vector> + #include "cmCommand.h" +class cmExecutionStatus; + /** \class cmBreakCommand * \brief Break from an enclosing foreach or while loop * @@ -34,8 +40,6 @@ public: * The name of the command as specified in CMakeList.txt. */ std::string GetName() const CM_OVERRIDE { return "break"; } - - cmTypeMacro(cmBreakCommand, cmCommand); }; #endif |