* Stubed rest of System.ComponentModel
[mono.git] / mcs / class / System / System.ComponentModel / ComponentConverter.cs
diff --git a/mcs/class/System/System.ComponentModel/ComponentConverter.cs b/mcs/class/System/System.ComponentModel/ComponentConverter.cs
new file mode 100644 (file)
index 0000000..c1c93dd
--- /dev/null
@@ -0,0 +1,38 @@
+//
+// System.ComponentModel.ComponentConverter
+//
+// Authors:
+//      Martin Willemoes Hansen (mwh@sysrq.dk)
+//
+// (C) 2003 Martin Willemoes Hansen
+//
+
+namespace System.ComponentModel
+{
+       public class ComponentConverter : ReferenceConverter
+       {
+               [MonoTODO]
+               public ComponentConverter (Type type) : base (type)
+               {
+               }
+
+               [MonoTODO]
+               public override PropertyDescriptorCollection GetProperties (ITypeDescriptorContext context,
+                                                                           object value,
+                                                                           Attribute[] attributes)
+               {
+                       throw new NotImplementedException();
+               }
+
+               [MonoTODO]
+               public override bool GetPropertiesSupported (ITypeDescriptorContext context)
+               {
+                       throw new NotImplementedException();
+               }
+
+               [MonoTODO]
+               ~ComponentConverter()
+               {
+               }
+       }
+}