Locally key frame search helper
| 35 | namespace { |
| 36 | // Locally key frame search helper |
| 37 | struct KeyFrameTimeLess |
| 38 | { |
| 39 | bool operator() (const KeyFrame* kf, const KeyFrame* kf2) const |
| 40 | { |
| 41 | return kf->getTime() < kf2->getTime(); |
| 42 | } |
| 43 | }; |
| 44 | } |
| 45 | //--------------------------------------------------------------------- |
| 46 | //--------------------------------------------------------------------- |
no outgoing calls
no test coverage detected