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