| 3378 | } |
| 3379 | |
| 3380 | bool IGFD::PlacesFeature::RemovePlacesGroup(const std::string& vGroupName) { |
| 3381 | for (auto it = m_Groups.begin(); it != m_Groups.end(); ++it) { |
| 3382 | if ((*it).second->name == vGroupName) { |
| 3383 | m_Groups.erase(it); |
| 3384 | return true; |
| 3385 | } |
| 3386 | } |
| 3387 | return false; |
| 3388 | } |
| 3389 | |
| 3390 | IGFD::PlacesFeature::GroupStruct* IGFD::PlacesFeature::GetPlacesGroupPtr(const std::string& vGroupName) { |
| 3391 | if (m_Groups.find(vGroupName) != m_Groups.end()) { |
no test coverage detected