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