| 26 | } |
| 27 | |
| 28 | cmSlnProjectEntry* cmSlnData::GetProjectByGUID(std::string const& projectGUID) |
| 29 | { |
| 30 | auto it(ProjectsByGUID.find(projectGUID)); |
| 31 | if (it != ProjectsByGUID.end()) { |
| 32 | return &it->second; |
| 33 | } |
| 34 | return nullptr; |
| 35 | } |
| 36 | |
| 37 | cmSlnProjectEntry const* cmSlnData::GetProjectByName( |
| 38 | std::string const& projectName) const |