Interface describes token parser.
You can find more information in comments below. Overrided methods can be found in corresponding base class or interface.
class IParser :public virtual IReleasable
{
public:
virtual bool Parse(size_t &index, Token &token) = 0; // Parse token at specified index. Update "index" and store token information in "token"
};
Namespace: | nitisa::script |
Include: | Nitisa/Modules/Script/Interfaces/IParser.h |