* parser.cs: Allow creating a regular expression using {,n} as the
[mono.git] / mcs / class / System / System.Text.RegularExpressions / RegexRunnerFactory.cs
1 //\r
2 // assembly:    System\r
3 // namespace:   System.Text.RegularExpressions\r
4 // file:        RegexRunnerFactory.cs\r
5 //\r
6 // author:      Dan Lewis (dihlewis@yahoo.co.uk)\r
7 //              (c) 2002\r
8 \r
9 using System;
10 using System.ComponentModel;
11
12 namespace System.Text.RegularExpressions {\r
13         /* I'm just guessing that this is the correct place for this
14          * attribute, and that the option is correct.  It shuts up
15          * CorCompare for this undocumented class.
16          */
17         [EditorBrowsable (EditorBrowsableState.Never)]
18         public abstract class RegexRunnerFactory {\r
19                 protected RegexRunnerFactory () {\r
20                         throw new NotImplementedException ("RegexRunnerFactory is not supported by Mono.");\r
21                 }\r
22 \r
23                 protected internal abstract RegexRunner CreateInstance ();\r
24         }\r
25 }\r