Skip to content
Snippets Groups Projects

[WIP] ProcessorBase multi-threading

Closed Jeremie Deray requested to merge multi_threading into master
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
+ 2
2
@@ -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
Loading