Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/04/11 01:06:26 (13 years ago)
Author:
swagner
Message:

Worked on OKB (#1174)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/OKB (trunk integration)/HeuristicLab.Clients.OKB/3.3/Query/QueryClient.cs

    r5604 r5606  
    3333using HeuristicLab.PluginInfrastructure;
    3434
    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 {
     35namespace 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 {
    4040      get {
    41         if (instance == null) instance = new OKBClient();
     41        if (instance == null) instance = new QueryClient();
    4242        return instance;
    4343      }
     
    7575    #endregion
    7676
    77     private OKBClient() {
     77    private QueryClient() {
    7878      platforms = new ItemCollection<Platform>();
    7979      platforms.ItemsRemoved += new CollectionItemsChangedEventHandler<Platform>(platforms_ItemsRemoved);
Note: See TracChangeset for help on using the changeset viewer.