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

:lipstick:

parent 8ecef777
No related branches found
No related tags found
1 merge request!90[WIP] ProcessorBase multi-threading
This commit is part of merge request !90. Comments created here will be created in the context of that merge request.
......@@ -202,7 +202,7 @@ class ProcessorMotion : public ProcessorBase
* - initializing counters, flags, or any derived variables
* - initializing algorithms needed for processing the derived data
*/
virtual void preProcess() { };
virtual void preProcess() { }
/** Post-process
*
......@@ -214,7 +214,7 @@ class ProcessorMotion : public ProcessorBase
* - resetting and/or clearing variables and/or algorithms at the end of processing
* - drawing / printing / logging the results of the processing
*/
virtual void postProcess() { };
virtual void postProcess() { }
// 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