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

Merge branch 'virtuals_remove' into 'master'

Remove virtual from pointer getters

See merge request mobile_robotics/wolf!185
parents 7af28417 9857435d
No related branches found
No related tags found
1 merge request!185Remove virtual from pointer getters
...@@ -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