| 3326 | } |
| 3327 | |
| 3328 | IGFD::PlacesFeature::GroupStruct* IGFD::PlacesFeature::GetPlacesGroupPtr(const std::string& vGroupName) { |
| 3329 | if (m_Groups.find(vGroupName) != m_Groups.end()) { |
| 3330 | return m_Groups.at(vGroupName).get(); |
| 3331 | } |
| 3332 | return nullptr; |
| 3333 | } |
| 3334 | |
| 3335 | bool IGFD::PlacesFeature::GroupStruct::AddPlace(const std::string& vPlaceName, const std::string& vPlacePath, const bool vCanBeSaved, const FileStyle& vStyle) { |
| 3336 | if (vPlaceName.empty() || vPlacePath.empty()) { |
no test coverage detected