Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Client.Core/ClientConsoleService/ClientConsoleCommunicator.cs @ 919

Last change on this file since 919 was 919, checked in by kgrading, 15 years ago

refactored for #418, disabled the Client Console Project

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