]> wagnertech.de Git - mcloud.git/blob - mCloudAwk/IMCloudAwk.cs
monodev
[mcloud.git] / mCloudAwk / IMCloudAwk.cs
1 using System;
2
3 namespace mCloudAwk
4 {
5         public interface IMCloudAwk : IDisposable
6         {
7                 TConnection[] GetConnections();
8                 void AddConnection(TConnection t);
9                 void DeleteConnection(string name);
10                 int TestConnection(string name);
11         }
12 }
13