| 430 | cmVisualStudioSlnParser::DataGroupAll(~0); |
| 431 | |
| 432 | bool cmVisualStudioSlnParser::Parse(std::istream& input, cmSlnData& output, |
| 433 | DataGroupSet dataGroups) |
| 434 | { |
| 435 | this->LastResult.Clear(); |
| 436 | if (!this->IsDataGroupSetSupported(dataGroups)) { |
| 437 | this->LastResult.SetError(ResultErrorUnsupportedDataGroup, 0); |
| 438 | return false; |
| 439 | } |
| 440 | State state(dataGroups); |
| 441 | return this->ParseImpl(input, output, state); |
| 442 | } |
| 443 | |
| 444 | bool cmVisualStudioSlnParser::ParseFile(std::string const& file, |
| 445 | cmSlnData& output, |
nothing calls this directly
no test coverage detected