| 133 | explicit MyPositionMarkPoint(m2::PointD const & ptOrg); |
| 134 | |
| 135 | void SetUserPosition(m2::PointD const & pt, bool hasPosition) |
| 136 | { |
| 137 | SetPtOrg(pt); |
| 138 | m_hasPosition = hasPosition; |
| 139 | } |
| 140 | bool HasPosition() const { return m_hasPosition; } |
| 141 | |
| 142 | private: |
no outgoing calls
no test coverage detected