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

OSFeature.cs « System.Windows.Forms « System.Windows.Forms « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e672845f69d80daa6614ecb3f64ac233765f1d73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
//
// System.Windows.Forms.OSFeature.cs
//
// Author:
//   stubbed out by Paul Osman (paul.osman@sympatico.ca)
//   Dennis Hayes (dennish@Raytek.com)
//
// (C) 2002 Ximian, Inc
//

namespace System.Windows.Forms {

	// <summary>
	// </summary>

	public class OSFeature : FeatureSupport {

		private OSFeature(){//For signiture compatablity. Prevents the auto creation of public constructor
		}

		//
		//	 --- Public Fields
		//
		public static readonly object LayeredWindows;
		public static readonly object Themes;

		//
		//  --- Public Properties
		//
		[MonoTODO]
		public static OSFeature Feature {
			get {
				throw new NotImplementedException ();
			}
		}

		//
		//  --- Public Methods
		//

		[MonoTODO]
		public override Version GetVersionPresent(object feature) {
			throw new NotImplementedException ();
		}
		[MonoTODO]
		public virtual bool IsPresent(object o) {
			throw new NotImplementedException ();
		}
		[MonoTODO]
		public virtual bool IsPresent(object o, Version v) {
			throw new NotImplementedException ();
		}
	}
}