template class CCL::Persistence::CompareExpression

Compares a member with a constant value using an operator defined by the template argument.

template <IExpression::Type exprType>
class CompareExpression: public ExpressionImpl
{
public:
    // construction

    CompareExpression (StringID varName, VariantRef val);

    // methods

    Type CCL_API getExpressionType ();
    StringID CCL_API getVariableName ();
    VariantRef CCL_API getValue ();
};