Content


NTL
Core
CExpressionBool

CExpressionBool


Class implements expression storing boolean literal.

You can find more information in comments below. Overrided methods can be found in corresponding base class or interface.

class CExpressionBool :public CExpression
{
public:
    bool &Value;

    // IExpression methods 
    String toString() override;

    CExpressionBool(const size_t index, const bool value);
};
Namespace: nitisa::script
Include: Nitisa/Modules/Script/Expressions/ExpressionBool.h