Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using HeuristicLab.Hive.Client.Communication.Interfaces;
|
---|
6 | using HeuristicLab.Hive.Client.Communication.ClientConsole;
|
---|
7 |
|
---|
8 | namespace 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.