2021-02-10 18:03:50 +01:00

14 lines
282 B
C++

#pragma once
#include "CommandsParserValue.h"
#include "Parsing/AbstractLexer.h"
class CommandsLexer final : public AbstractLexer<CommandsParserValue>
{
protected:
CommandsParserValue GetNextToken() override;
public:
explicit CommandsLexer(IParserLineStream* stream);
};