Implements a class holding a value, a name and a color.
class DataEntry
Initializes the object.
DataEntry( std:: string sName, double dValue, float fRed, float fGreen, float fBlue )
Releases all allocated resources.
~DataEntry()
Returns the name of the data entry.
std::string GetName()
Returns the value of the data entry.
double GetValue()
Returns the color of the data entry.
glm::vec4 GetColor()