Stat::StatValue

Stat::StatValue
struct StatValue {
  enum ValueType {
    VT_None,
    VT_Int,
    VT_Int64,
    VT_Float
  };
  ValueType Type;
  const char* pName;
  union {
  };
};
Description

StatValue is a structure that represents a single statistics value.

Data Members
Data Member 
Description 
Represents the statistical data. 
Type 
Type of the statistical value. 
Enumerations
Enumeration 
Description 
Collection of type of statistical value. 
Methods
Method 
Description 
StatValue constructor and copy constructor which creates a statistical value. 
Creates a statistical data and assigns integer type to the data. 
Creates a statistical data and assigns Int64 type to the data. 
Creates a statistical data and assigns float type to the data. 
Operators
Operator 
Description 
= 
StatValue constructor and copy constructor which creates a statistical value. 
File

SF_Stats.h