summaryrefslogtreecommitdiffstats
path: root/Source/cmContinueCommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmContinueCommand.h')
-rw-r--r--Source/cmContinueCommand.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/Source/cmContinueCommand.h b/Source/cmContinueCommand.h
index a36d5f3..c5b8919 100644
--- a/Source/cmContinueCommand.h
+++ b/Source/cmContinueCommand.h
@@ -3,8 +3,14 @@
#ifndef cmContinueCommand_h
#define cmContinueCommand_h
+#include <cmConfigure.h>
+#include <string>
+#include <vector>
+
#include "cmCommand.h"
+class cmExecutionStatus;
+
/** \class cmContinueCommand
* \brief Continue 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 "continue"; }
-
- cmTypeMacro(cmContinueCommand, cmCommand);
};
#endif