Skip to content
Snippets Groups Projects

Resolve "Work on const / non-const in wolf base classes"

19 files
+ 35
35
Compare changes
  • Side-by-side
  • Inline
Files
19
@@ -61,9 +61,9 @@ class ProcessorRangeBearing : public ProcessorBase
// Implementation of pure virtuals from ProcessorBase
virtual void processCapture (CaptureBasePtr _capture) override;
virtual void processKeyFrame (FrameBasePtr _keyframe_ptr, const Scalar& _time_tol_other) override {};
virtual bool triggerInCapture (CaptureBasePtr) override { return true;};
virtual bool triggerInKeyFrame (FrameBasePtr _keyframe_ptr, const Scalar& _time_tol_other) override {return false;}
virtual bool voteForKeyFrame () override {return false;}
virtual bool triggerInCapture (CaptureBasePtr) const override { return true;};
virtual bool triggerInKeyFrame (FrameBasePtr _keyframe_ptr, const Scalar& _time_tol_other) const override {return false;}
virtual bool voteForKeyFrame () const override {return false;}
private:
// control variables
Loading