| 3388 | } |
| 3389 | |
| 3390 | IGFD::PlacesFeature::GroupStruct* IGFD::PlacesFeature::GetPlacesGroupPtr(const std::string& vGroupName) { |
| 3391 | if (m_Groups.find(vGroupName) != m_Groups.end()) { |
| 3392 | return m_Groups.at(vGroupName).get(); |
| 3393 | } |
| 3394 | return nullptr; |
| 3395 | } |
| 3396 | |
| 3397 | bool IGFD::PlacesFeature::GroupStruct::AddPlace(const std::string& vPlaceName, const std::string& vPlacePath, const bool vCanBeSaved, const FileStyle& vStyle) { |
| 3398 | if (vPlaceName.empty() || vPlacePath.empty()) { |
no test coverage detected