2004-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / OSFeature.cs
1 //
2 // System.Windows.Forms.OSFeature.cs
3 //
4 // Author:
5 //   stubbed out by Paul Osman (paul.osman@sympatico.ca)
6 //   Dennis Hayes (dennish@Raytek.com)
7 //
8 // (C) 2002 Ximian, Inc
9 //
10
11 namespace System.Windows.Forms {
12
13         // <summary>
14         // </summary>
15
16         public class OSFeature : FeatureSupport {
17
18                 private OSFeature(){//For signiture compatablity. Prevents the auto creation of public constructor
19                 }
20
21                 //
22                 //       --- Public Fields
23                 //
24                 public static readonly object LayeredWindows;
25                 public static readonly object Themes;
26
27                 //
28                 //  --- Public Properties
29                 //
30                 [MonoTODO]
31                 public static OSFeature Feature {
32                         get {
33                                 throw new NotImplementedException ();
34                         }
35                 }
36
37                 //
38                 //  --- Public Methods
39                 //
40
41                 [MonoTODO]
42                 public override Version GetVersionPresent(object feature) {
43                         throw new NotImplementedException ();
44                 }
45                 [MonoTODO]
46                 public virtual bool IsPresent(object o) {
47                         throw new NotImplementedException ();
48                 }
49                 [MonoTODO]
50                 public virtual bool IsPresent(object o, Version v) {
51                         throw new NotImplementedException ();
52                 }
53         }
54 }