| 69 | std::string const cmVisualStudioSlnParser::ParsedLine::Quote("\""); |
| 70 | |
| 71 | bool cmVisualStudioSlnParser::ParsedLine::IsComment() const |
| 72 | { |
| 73 | assert(!this->Tag.empty()); |
| 74 | return (this->Tag[0] == '#'); |
| 75 | } |
| 76 | |
| 77 | bool cmVisualStudioSlnParser::ParsedLine::IsKeyValuePair() const |
| 78 | { |