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