mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-20 00:02:55 +00:00
18 lines
431 B
C++
18 lines
431 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "Parsing/Simple/SimpleParserValue.h"
|
|
#include "Parsing/Matcher/AbstractMatcher.h"
|
|
|
|
class SimpleMatcherKeywordPrefix final : public AbstractMatcher<SimpleParserValue>
|
|
{
|
|
std::string m_value;
|
|
|
|
protected:
|
|
MatcherResult<SimpleParserValue> CanMatch(ILexer<SimpleParserValue>* lexer, unsigned tokenOffset) override;
|
|
|
|
public:
|
|
explicit SimpleMatcherKeywordPrefix(std::string value);
|
|
};
|