Added files to System.Configuration.Install
[mono.git] / mcs / class / System.Configuration.Install / System.Configuration.Install / ComponentInstaller.cs
1 // System.Configuration.Install.ComponentInstaller.cs
2 //
3 // Author:
4 //      Alejandro Sánchez Acosta
5 //
6 // (C) Alejandro Sánchez Acosta
7 //
8
9 using System.ComponentModel;
10
11 namespace System.Configuration.Install
12 {
13         public abstract class ComponentInstaller : Installer
14         {
15                 [MonoTODO]
16                 protected ComponentInstaller () {
17                         throw new NotImplementedException ();
18                 }
19
20                 public abstract void CopyFromComponent (IComponent component);
21                 
22                 [MonoTODO]
23                 public virtual bool IsEquivalentInstaller (ComponentInstaller otherInstaller)
24                 {
25                         throw new NotImplementedException ();   
26                 }
27         }
28 }