Skip to content
Snippets Groups Projects
Commit 68cfb6cd authored by Jeremie Deray's avatar Jeremie Deray
Browse files

renaming ProcessorMotion::processIncomingCapture -> ProcessorMotion::getIncomingCaptureMotion

parent 529e1f69
No related branches found
Tags v75
1 merge request!127Add ProcessorMotion::processIncomingCapture & Miscellaneous
This commit is part of merge request !127. Comments created here will be created in the context of that merge request.
...@@ -374,7 +374,7 @@ void ProcessorMotion::reintegrateBuffer(CaptureMotionPtr _capture_ptr) ...@@ -374,7 +374,7 @@ void ProcessorMotion::reintegrateBuffer(CaptureMotionPtr _capture_ptr)
} }
} }
CaptureMotionPtr ProcessorMotion::processIncomingCapture(CaptureBasePtr& _incoming_ptr) CaptureMotionPtr ProcessorMotion::getIncomingCaptureMotion(CaptureBasePtr& _incoming_ptr)
{ {
return std::static_pointer_cast<CaptureMotion>(_incoming_ptr); return std::static_pointer_cast<CaptureMotion>(_incoming_ptr);
} }
......
...@@ -274,7 +274,7 @@ class ProcessorMotion : public ProcessorBase ...@@ -274,7 +274,7 @@ class ProcessorMotion : public ProcessorBase
* If not overloaded, the base class calls static_pointer_cast<CaptureMotion>(incoming) * If not overloaded, the base class calls static_pointer_cast<CaptureMotion>(incoming)
* @return CaptureMotion. * @return CaptureMotion.
*/ */
virtual CaptureMotionPtr processIncomingCapture(CaptureBasePtr& _incoming_ptr); virtual CaptureMotionPtr getIncomingCaptureMotion(CaptureBasePtr& _incoming_ptr);
// These are the pure virtual functions doing the mathematics // These are the pure virtual functions doing the mathematics
......
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