gaze  0.1.0
Perform gaze tracking with common webcams.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Groups Pages
pipeline_step.cpp
1 #include "gaze/pipeline_step.h"
2 
3 #include <string>
4 
5 
6 namespace gaze {
7 
8 int PipelineStep::counter = -1;
9 
11  : number(++PipelineStep::counter),
12  name("Step " + std::to_string(number)) {
13 }
14 
16  return this->name;
17 }
18 
19 } // namespace gaze
Abstract base class for PipelineSteps. Must be inherited from.
Definition: pipeline_step.h:18
std::string get_name()
std::string name
Definition: pipeline_step.h:31