Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive.Azure/HeuristicLab.Clients.Hive.CloudManager/3.3/CloudManagerClient.cs @ 7278

Last change on this file since 7278 was 7278, checked in by spimming, 12 years ago

#1680: Hive cloud manager initial commit

File size: 543 bytes
Line 
1using HeuristicLab.Common;
2using HeuristicLab.Core;
3
4namespace HeuristicLab.Clients.Hive.CloudManager {
5  [Item("CloudManagerClient", "Hive Cloud Manager Client.")]
6  public sealed class CloudManagerClient : IContent {
7    private static CloudManagerClient instance;
8    public static CloudManagerClient Instance {
9      get {
10        if (instance == null) instance = new CloudManagerClient();
11        return instance;
12      }
13    }
14
15    private CloudManagerClient() { }
16
17    #region Properties
18    #endregion
19
20
21  }
22}
Note: See TracBrowser for help on using the repository browser.