Add license and copyright to all source files in System.Drawing
[mono.git] / mcs / class / System.Configuration.Install / System.Configuration.Install / TransactedInstaller.cs
1 // System.Configuration.Install.TransactedInstaller.cs
2 //
3 // Author:
4 //      Gert Driesen (drieseng@users.sourceforge.net)
5 //
6 // (C) Novell
7 //
8
9 using System.Collections;
10
11 namespace System.Configuration.Install
12 {
13         public class TransactedInstaller : Installer
14         {
15                 public TransactedInstaller ()
16                 {
17                 }
18
19                 [MonoTODO]
20                 public override void Install (IDictionary savedState)
21                 {
22                 }
23
24                 [MonoTODO]
25                 public override void Uninstall (IDictionary savedState)
26                 {
27                 }
28         }
29 }