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