Class implements expression storing float literal.
You can find more information in comments below. Overrided methods can be found in corresponding base class or interface.
class CExpressionFloat :public CExpression
{
public:
double &Value;
String &Postfix;
PostfixType &TypeOfPostfix;
byte &Base;
String &UserDefinedLiteral;
// IExpression methods
String toString() override;
CExpressionFloat(const size_t index, const double value, const String &postfix, const PostfixType postfix_type, const byte base, const String &user_defined_literal);
};
Namespace: | nitisa::script |
Include: | Nitisa/Modules/Script/Expressions/ExpressionFloat.h |