MCPcopy Create free account
hub / github.com/Kitware/CMake / Parse

Method Parse

Source/cmVisualStudioSlnParser.cxx:432–442  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

430 cmVisualStudioSlnParser::DataGroupAll(~0);
431
432bool 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
444bool cmVisualStudioSlnParser::ParseFile(std::string const& file,
445 cmSlnData& output,

Callers

nothing calls this directly

Calls 4

ParseImplMethod · 0.95
ClearMethod · 0.45
SetErrorMethod · 0.45

Tested by

no test coverage detected