| 101 | } |
| 102 | |
| 103 | void |
| 104 | Track::reset() |
| 105 | { |
| 106 | TrackMarkerPtr marker = getInternalMarker(); |
| 107 | if (!marker) { |
| 108 | return; |
| 109 | } |
| 110 | marker->resetTrack(); |
| 111 | } |
| 112 | |
| 113 | Tracker::Tracker(const TrackerContextPtr& ctx) |
| 114 | : _ctx(ctx) |
nothing calls this directly
no test coverage detected