mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-20 08:05:45 +00:00
14 lines
282 B
C++
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);
|
|
};
|