50 #ifndef _COMPARATOR_H_
51 #define _COMPARATOR_H_
67 static const short CMP_EQ = 0;
72 static const short CMP_NE = 1;
77 static const short CMP_LT = 2;
83 static const short CMP_LTE = 3;
88 static const short CMP_GT = 4;
94 static const short CMP_GTE = 5;
96 static bool evaluate(
string first,
string second,
short comparator);
97 static bool evaluate(
float first,
float second,
short comparator);
105 static string toString(
short comparator);
106 static short fromString(
string comp);
114 #endif //_COMPARATOR_H_
Definition: Comparator.h:62