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