mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-26 14:21:49 +00:00
Add Header Lexer for ZCG cpp
This commit is contained in:
13
src/ZoneCodeGeneratorLib/Parsing/Header/Impl/HeaderLexer.h
Normal file
13
src/ZoneCodeGeneratorLib/Parsing/Header/Impl/HeaderLexer.h
Normal file
@ -0,0 +1,13 @@
|
||||
#pragma once
|
||||
|
||||
#include "HeaderParserValue.h"
|
||||
#include "Parsing/AbstractLexer.h"
|
||||
|
||||
class HeaderLexer final : public AbstractLexer<HeaderParserValue>
|
||||
{
|
||||
protected:
|
||||
HeaderParserValue GetNextToken() override;
|
||||
|
||||
public:
|
||||
explicit HeaderLexer(IParserLineStream* stream);
|
||||
};
|
Reference in New Issue
Block a user