*** empty log message ***
[mono.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / FeatureSupport.cs
1 //
2 // System.Windows.Forms.FeatureSupport.cs
3 //
4 // Author:
5 //   stubbed out by Daniel Carrera (dcarrera@math.toronto.edu)
6 //      Dennis Hayes (dennish@raytek.com)\r
7 //
8 // (C) 2002 Ximian, Inc
9 //
10
11 namespace System.Windows.Forms {
12
13         // <summary>
14         //      This is only a template.  Nothing is implemented yet.
15         //
16         // </summary>
17
18     public abstract class FeatureSupport : IFeatureSupport {
19
20                 //
21                 //  --- Public Methods
22                 //
23                 [MonoTODO]
24                 public virtual bool Equals(object o)
25                 {
26                         throw new NotImplementedException ();
27                 }
28                 [MonoTODO]
29                 public static bool Equals(object o1, object o2)
30                 {
31                         throw new NotImplementedException ();
32                 }
33                 [MonoTODO]
34                 public abstract Version GetVersionPresent(object o)
35                 {
36                         throw new NotImplementedException ();
37                 }
38                 [MonoTODO]
39                 public virtual bool IsPresent(object o)
40                 {
41                         throw new NotImplementedException ();
42                 }
43
44                 //
45                 // --- Protected Constructors
46                 //
47                 [MonoTODO]
48                 protected FeatureSupport()
49                 {
50                         throw new NotImplementedException ();
51                 }
52          }
53 }