namespace SharedLibraryCore.Interfaces { /// /// defines the capabilities of the parser regex factory /// public interface IParserRegexFactory { /// /// creates a new ParserRegex instance /// /// ParserRegex instance ParserRegex CreateParserRegex(); } }