Locally key frame search helper
| 46 | { |
| 47 | // Locally key frame search helper |
| 48 | struct KeyFrameTimeLess |
| 49 | { |
| 50 | bool operator()( const KeyFrame *kf, const KeyFrame *kf2 ) const |
| 51 | { |
| 52 | return kf->getTime() < kf2->getTime(); |
| 53 | } |
| 54 | }; |
| 55 | } // namespace |
| 56 | //--------------------------------------------------------------------- |
| 57 | //--------------------------------------------------------------------- |
no outgoing calls
no test coverage detected