| 40 | } |
| 41 | |
| 42 | bool MultiGeometry::HasTimestamps() const |
| 43 | { |
| 44 | if (m_timestamps.empty()) |
| 45 | return false; |
| 46 | for (auto const & timestamp : m_timestamps) |
| 47 | if (!timestamp.empty()) |
| 48 | return true; |
| 49 | return false; |
| 50 | } |
| 51 | |
| 52 | bool MultiGeometry::HasTimestampsFor(size_t lineIndex) const |
| 53 | { |