12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #ifndef cmCTestRunScriptCommand_h
- #define cmCTestRunScriptCommand_h
- #include "cmConfigure.h"
- #include "cmCTestCommand.h"
- #include <string>
- #include <vector>
- class cmCommand;
- class cmExecutionStatus;
- class cmCTestRunScriptCommand : public cmCTestCommand
- {
- public:
- cmCTestRunScriptCommand() {}
-
- cmCommand* Clone() override
- {
- cmCTestRunScriptCommand* ni = new cmCTestRunScriptCommand;
- ni->CTest = this->CTest;
- ni->CTestScriptHandler = this->CTestScriptHandler;
- return ni;
- }
-
- bool InitialPass(std::vector<std::string> const& args,
- cmExecutionStatus& status) override;
- };
- #endif
|