123456789101112131415161718192021222324252627282930313233343536 |
- #ifndef cmContinueCommand_h
- #define cmContinueCommand_h
- #include "cmConfigure.h"
- #include <string>
- #include <vector>
- #include "cmCommand.h"
- class cmExecutionStatus;
- class cmContinueCommand : public cmCommand
- {
- public:
-
- cmCommand* Clone() override { return new cmContinueCommand; }
-
- bool InitialPass(std::vector<std::string> const& args,
- cmExecutionStatus& status) override;
- };
- #endif
|