Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Operator Architecture Refactoring/HeuristicLab.Hive.Client.Communication/ClientConsoleCommunicator.cs @ 1184

Last change on this file since 1184 was 843, checked in by kgrading, 16 years ago

worked on #401

File size: 730 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Hive.Client.Communication.Interfaces;
6using HeuristicLab.Hive.Client.Communication.ClientConsole;
7
8namespace HeuristicLab.Hive.Client.Communication {
9  public class ClientConsoleCommunicator: IClientConsoleCommunicator {
10    #region IClientConsoleCommunicator Members
11
12    public StatusCommons GetStatusInfos() {
13      throw new NotImplementedException();
14    }
15
16    public ConnectionContainer GetConnection() {
17      throw new NotImplementedException();
18    }
19
20    public void SetConnection(ConnectionContainer container) {
21      throw new NotImplementedException();
22    }
23
24    #endregion
25  }
26}
Note: See TracBrowser for help on using the repository browser.