Class implements parser of integer and float values written in decimal form.
You can find more information in comments below. Overrided methods can be found in corresponding base class or interface.
class CParserNumeric :public virtual IParser, public CReleasable
{
public:
// IParser methods
bool Parse(size_t &index, Token &token) override;
CParserNumeric(IReader *reader, ILexic *lexic);
};
Namespace: | nitisa::script |
Include: | Nitisa/Modules/Script/Parsers/ParserNumeric.h |