mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-08 22:08:29 -05:00
14 lines
489 B
C++
14 lines
489 B
C++
#pragma once
|
|
|
|
#include "Parsing/Header/Impl/HeaderParserValue.h"
|
|
#include "Parsing/Matcher/AbstractMatcherFactory.h"
|
|
|
|
class HeaderMatcherFactory final : public AbstractMatcherFactory<HeaderParserValue>
|
|
{
|
|
public:
|
|
explicit HeaderMatcherFactory(const IMatcherForLabelSupplier<HeaderParserValue>* labelSupplier);
|
|
|
|
_NODISCARD MatcherFactoryWrapper<HeaderParserValue> Type(HeaderParserValueType type) const;
|
|
_NODISCARD MatcherFactoryWrapper<HeaderParserValue> Char(char c) const;
|
|
};
|