21 #ifndef GRT_CLASS_TRACKER_HEADER
22 #define GRT_CLASS_TRACKER_HEADER
33 ClassTracker(
unsigned int classLabel = 0,
unsigned int counter = 0,
string className =
"NOT_SET"){
34 this->classLabel = classLabel;
35 this->counter = counter;
36 this->className = className;
40 this->classLabel = rhs.classLabel;
41 this->counter = rhs.counter;
42 this->className = rhs.className;
49 this->classLabel = rhs.classLabel;
50 this->counter = rhs.counter;
51 this->className = rhs.className;
57 return a.classLabel > b.classLabel;
61 return a.classLabel < b.classLabel;
64 unsigned int classLabel;
71 #endif //GRT_CLASS_TRACKER_HEADER