#pragma once #include #include "Parsing/Simple/SimpleParserValue.h" #include "Parsing/Matcher/AbstractMatcherFactory.h" class SimpleMatcherFactory final : public AbstractMatcherFactory { public: explicit SimpleMatcherFactory(const IMatcherForLabelSupplier* labelSupplier); _NODISCARD MatcherFactoryWrapper Type(SimpleParserValueType type) const; _NODISCARD MatcherFactoryWrapper Keyword(std::string value) const; _NODISCARD MatcherFactoryWrapper Identifier() const; _NODISCARD MatcherFactoryWrapper Integer() const; _NODISCARD MatcherFactoryWrapper FloatingPoint() const; _NODISCARD MatcherFactoryWrapper Char(char c) const; };