Content


NTL
Core
CFunctionVariable

CFunctionVariable


Class provides implementation of the variable for expressions. It is being used by expression runners.

Function stores pointer to the specified variable.

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

class CFunctionVariable :public virtual CFunction
{
public:
    // IFunction methods 
    bool Run() override;

    CFunctionVariable(IErrorListener *error_listener, Variable &value);
};
Namespace: nitisa::script
Include: Nitisa/Modules/Script/Functions/General/FunctionVariable.h