| 46 | |
| 47 | template <int Advance = 2> |
| 48 | Result Parse(std::vector<std::string> const& args) const |
| 49 | { |
| 50 | this->Inputs.clear(); |
| 51 | |
| 52 | return this->cmArgumentParser<Result>::Parse( |
| 53 | cmMakeRange(args).advance(Advance), &this->Inputs); |
| 54 | } |
| 55 | |
| 56 | std::vector<std::string> const& GetInputs() const { return this->Inputs; } |
| 57 |
no test coverage detected