InheritanceService.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. //
  2. // System.ComponentModel.Design.InheritanceService
  3. //
  4. // Authors:
  5. // Martin Willemoes Hansen ([email protected])
  6. //
  7. // (C) 2003 Martin Willemoes Hansen
  8. //
  9. using System.Reflection;
  10. namespace System.ComponentModel.Design
  11. {
  12. public class InheritanceService : IInheritanceService, IDisposable
  13. {
  14. [MonoTODO]
  15. public InheritanceService()
  16. {
  17. }
  18. [MonoTODO]
  19. public void AddInheritedComponents (IComponent component,
  20. IContainer container)
  21. {
  22. throw new NotImplementedException();
  23. }
  24. [MonoTODO]
  25. protected virtual void AddInheritedComponents (Type type,
  26. IComponent component,
  27. IContainer container)
  28. {
  29. throw new NotImplementedException();
  30. }
  31. [MonoTODO]
  32. public void Dispose()
  33. {
  34. throw new NotImplementedException();
  35. }
  36. [MonoTODO]
  37. public InheritanceAttribute GetInheritanceAttribute (IComponent component)
  38. {
  39. throw new NotImplementedException();
  40. }
  41. [MonoTODO]
  42. protected virtual bool IgnoreInheritedMember (MemberInfo member,
  43. IComponent component)
  44. {
  45. throw new NotImplementedException();
  46. }
  47. [MonoTODO]
  48. ~InheritanceService()
  49. {
  50. }
  51. }
  52. }