Skip to content
Snippets Groups Projects
Commit 9857435d authored by Joan Solà Ortega's avatar Joan Solà Ortega
Browse files

Remove virtual from pointer getters

parent 7af28417
No related branches found
No related tags found
1 merge request!185Remove virtual from pointer getters
Pipeline #
This commit is part of merge request !185. Comments created here will be created in the context of that merge request.
......@@ -123,7 +123,6 @@ class ProcessorMotion : public ProcessorBase
// Instructions to the processor:
void process2(CaptureBasePtr _incoming_ptr);
void process(CaptureBasePtr _incoming_ptr);
virtual void resetDerived();
......@@ -399,9 +398,9 @@ class ProcessorMotion : public ProcessorBase
Motion motionZero(const TimeStamp& _ts);
public:
virtual CaptureMotionPtr getOriginPtr();
virtual CaptureMotionPtr getLastPtr();
virtual CaptureMotionPtr getIncomingPtr();
CaptureMotionPtr getOriginPtr();
CaptureMotionPtr getLastPtr();
CaptureMotionPtr getIncomingPtr();
protected:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment