2020-04-01 15:11:56 -04:00
|
|
|
|
namespace SharedLibraryCore.Interfaces
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2022-01-26 11:32:16 -05:00
|
|
|
|
/// defines the capabilities of the parser regex factory
|
2020-04-01 15:11:56 -04:00
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IParserRegexFactory
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2022-01-26 11:32:16 -05:00
|
|
|
|
/// creates a new ParserRegex instance
|
2020-04-01 15:11:56 -04:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>ParserRegex instance</returns>
|
|
|
|
|
ParserRegex CreateParserRegex();
|
|
|
|
|
}
|
2022-01-26 11:32:16 -05:00
|
|
|
|
}
|