Welcome to mirror list, hosted at ThFree Co, Russian Federation.

RegexRunnerFactory.cs « System.Text.RegularExpressions « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 895ff16560784cb1e9777c8e44fb24993f22ee70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
// assembly:	System
// namespace:	System.Text.RegularExpressions
// file:	RegexRunnerFactory.cs
//
// author:	Dan Lewis (dihlewis@yahoo.co.uk)
// 		(c) 2002

using System;

namespace System.Text.RegularExpressions {
	
	public abstract class RegexRunnerFactory {
		protected RegexRunnerFactory () {
			throw new NotImplementedException ("RegexRunnerFactory is not supported by Mono.");
		}

		protected internal abstract RegexRunner CreateInstance ();
	}
}