#include <Common.h>
Public Attributes | |
bool | isAttribute |
Whether the structure stores an attribute name or a constant value. | |
union { | |
RelationAttribute attribute | |
An attribute name (isAttribute != 0). | |
TypedValue value | |
A constant value (isAttribute == 0). | |
}; |
Variant structure to hold an attribute name (RelationAttribute) or a constant value (TypedValue). The isAttribute field indicates which field of the union is meaningful.