mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-09-02 23:17:26 +00:00
12 lines
224 B
C++
12 lines
224 B
C++
#include "CommandsLexer.h"
|
|
|
|
CommandsLexer::CommandsLexer(IParserLineStream* stream)
|
|
: AbstractLexer(stream)
|
|
{
|
|
}
|
|
|
|
CommandsParserValue CommandsLexer::GetNextToken()
|
|
{
|
|
return CommandsParserValue::Invalid(TokenPos());
|
|
}
|