mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-20 16:15:43 +00:00
17 lines
413 B
C++
17 lines
413 B
C++
#pragma once
|
|
|
|
#include "Parsing/Commands/Impl/CommandsParserValue.h"
|
|
#include "Parsing/Matcher/AbstractMatcher.h"
|
|
|
|
class CommandsMatcherCharacter final : public AbstractMatcher<CommandsParserValue>
|
|
{
|
|
public:
|
|
explicit CommandsMatcherCharacter(char c);
|
|
|
|
protected:
|
|
MatcherResult<CommandsParserValue> CanMatch(ILexer<CommandsParserValue>* lexer, unsigned tokenOffset) override;
|
|
|
|
private:
|
|
char m_char;
|
|
};
|