* System.Windows.Forms.Design/FileNameEditor.cs: code formatting
[mono.git] / mcs / class / System.Design / System.ComponentModel.Design / InheritanceService.cs
1 //
2 // System.ComponentModel.Design.InheritanceService
3 //
4 // Authors:
5 //      Martin Willemoes Hansen (mwh@sysrq.dk)
6 //
7 // (C) 2003 Martin Willemoes Hansen
8 //
9
10 using System.Reflection;
11
12 namespace System.ComponentModel.Design
13 {
14         public class InheritanceService : IInheritanceService, IDisposable
15         {
16                 [MonoTODO]
17                 public InheritanceService()
18                 {
19                 }
20
21                 [MonoTODO]
22                 public void AddInheritedComponents (IComponent component,
23                                                     IContainer container)
24                 {
25                         throw new NotImplementedException();
26                 }
27
28                 [MonoTODO]
29                 protected virtual void AddInheritedComponents (Type type,
30                                                                IComponent component,
31                                                                IContainer container)
32                 {
33                         throw new NotImplementedException();
34                 }
35
36                 [MonoTODO]
37                 public void Dispose()
38                 {
39                         throw new NotImplementedException();
40                 }
41
42                 [MonoTODO]
43                 public InheritanceAttribute GetInheritanceAttribute (IComponent component)
44                 {
45                         throw new NotImplementedException();
46                 }
47
48                 [MonoTODO]
49                 protected virtual bool IgnoreInheritedMember (MemberInfo member,
50                                                               IComponent component)
51                 {
52                         throw new NotImplementedException();
53                 }
54
55
56                 [MonoTODO]
57                 ~InheritanceService()
58                 {
59                 }
60
61         }
62 }