#include <Common.h>
Public Attributes | |
AttributeType | type |
The type of the value. | |
union { | |
int value_i | |
The value as an integer (use when type == INTEGER). | |
float value_f | |
The value as a float (use when type == FLOAT). | |
const char * value_str | |
The value as a string (use when type == STRING). | |
}; |
Variant structure to hold an integer, float, or string pointer. The type parameter indicates which field of the union is meaningful.