2004-03-15 Umadevi S (sumadevi@novell.com)
[mono.git] / mcs / class / System.Data / System.Data / DefaultValueTypeConverter.cs
1 //
2 // System.Data.DefaultValueTypeConverter.cs
3 //
4 // Author:
5 //   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
6 //
7 // (C) 2004 Andreas Nahr
8 //
9
10 using System;
11 using System.Globalization;
12 using System.ComponentModel;
13
14 namespace System.Data
15 {
16         internal sealed class DefaultValueTypeConverter : ExpandableObjectConverter
17         {
18                 [MonoTODO]
19                 public DefaultValueTypeConverter ()
20                 {
21                         throw new NotImplementedException ();
22                 }
23
24                 [MonoTODO]
25                 public override object ConvertTo (ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
26                 {
27                         throw new NotImplementedException ();
28                 }
29
30                 [MonoTODO]
31                 public override bool CanConvertTo (ITypeDescriptorContext context, Type destinationType)
32                 {
33                         throw new NotImplementedException ();
34                 }
35         }
36 }