21 #ifndef GRT_CLASS_TRACKER_HEADER 22 #define GRT_CLASS_TRACKER_HEADER 32 ClassTracker(
unsigned int classLabel = 0,
unsigned int counter = 0, std::string className =
"NOT_SET"){
33 this->classLabel = classLabel;
34 this->counter = counter;
35 this->className = className;
39 this->classLabel = rhs.classLabel;
40 this->counter = rhs.counter;
41 this->className = rhs.className;
48 this->classLabel = rhs.classLabel;
49 this->counter = rhs.counter;
50 this->className = rhs.className;
56 return a.classLabel > b.classLabel;
60 return a.classLabel < b.classLabel;
63 unsigned int classLabel;
65 std::string className;
70 #endif //GRT_CLASS_TRACKER_HEADER