Changeset 5606 for branches/OKB (trunk integration)/HeuristicLab.Clients.OKB/3.3/Query/QueryClient.cs
- Timestamp:
- 03/04/11 01:06:26 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/OKB (trunk integration)/HeuristicLab.Clients.OKB/3.3/Query/QueryClient.cs
r5604 r5606 33 33 using HeuristicLab.PluginInfrastructure; 34 34 35 namespace HeuristicLab.Clients.OKB {36 [Item(" OKBClient", "Client for accessing the OKB.")]37 public sealed class OKBClient : IContent {38 private static OKBClient instance;39 public static OKBClient Instance {35 namespace HeuristicLab.Clients.OKB.Query { 36 [Item("QueryClient", "Client for accessing the OKB.")] 37 public sealed class QueryClient : IContent { 38 private static QueryClient instance; 39 public static QueryClient Instance { 40 40 get { 41 if (instance == null) instance = new OKBClient();41 if (instance == null) instance = new QueryClient(); 42 42 return instance; 43 43 } … … 75 75 #endregion 76 76 77 private OKBClient() {77 private QueryClient() { 78 78 platforms = new ItemCollection<Platform>(); 79 79 platforms.ItemsRemoved += new CollectionItemsChangedEventHandler<Platform>(platforms_ItemsRemoved);
Note: See TracChangeset
for help on using the changeset viewer.