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 #
...@@ -123,7 +123,6 @@ class ProcessorMotion : public ProcessorBase ...@@ -123,7 +123,6 @@ class ProcessorMotion : public ProcessorBase
// Instructions to the processor: // Instructions to the processor:
void process2(CaptureBasePtr _incoming_ptr);
void process(CaptureBasePtr _incoming_ptr); void process(CaptureBasePtr _incoming_ptr);
virtual void resetDerived(); virtual void resetDerived();
...@@ -399,9 +398,9 @@ class ProcessorMotion : public ProcessorBase ...@@ -399,9 +398,9 @@ class ProcessorMotion : public ProcessorBase
Motion motionZero(const TimeStamp& _ts); Motion motionZero(const TimeStamp& _ts);
public: public:
virtual CaptureMotionPtr getOriginPtr(); CaptureMotionPtr getOriginPtr();
virtual CaptureMotionPtr getLastPtr(); CaptureMotionPtr getLastPtr();
virtual CaptureMotionPtr getIncomingPtr(); CaptureMotionPtr getIncomingPtr();
protected: 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