| 272 | } |
| 273 | |
| 274 | bool Bookmark::CanFillPlacePageMetadata() const |
| 275 | { |
| 276 | auto const & p = m_data.m_properties; |
| 277 | if (auto const hours = p.find("hours"); hours != p.end() && !hours->second.empty()) |
| 278 | return true; |
| 279 | return false; |
| 280 | } |
| 281 | |
| 282 | void Bookmark::Attach(kml::MarkGroupId groupId) |
| 283 | { |
no test coverage detected