Class provides implementation of the casting to double data type. It is being used by expression runners.
You can find more information in comments below. Overrided methods can be found in corresponding base class or interface.
class CFunctionDouble :public CFunction
{
public:
// IFunction methods
bool Run() override;
CFunctionDouble(IErrorListener *error_listener, IFunction *operand);
};
Namespace: | nitisa::script |
Include: | Nitisa/Modules/Script/Functions/Cast/FunctionDouble.h |