| 148 | }; |
| 149 | |
| 150 | cmVisualStudioSlnParser::State::State(DataGroupSet requestedData) |
| 151 | : RequestedData(requestedData) |
| 152 | { |
| 153 | if (this->RequestedData.test(DataGroupProjectDependenciesBit)) { |
| 154 | this->RequestedData.set(DataGroupProjectsBit); |
| 155 | } |
| 156 | this->Stack.push(FileStateStart); |
| 157 | } |
| 158 | |
| 159 | bool cmVisualStudioSlnParser::State::ReadLine(std::istream& input, |
| 160 | std::string& line) |