16 lines
273 B
C#
16 lines
273 B
C#
|
using System;
|
||
|
|
||
|
/* This is an interface which would be implemented
|
||
|
* by UnixCommunication and WinCommunication.
|
||
|
*/
|
||
|
|
||
|
namespace sscs.communication
|
||
|
{
|
||
|
|
||
|
interface Communication
|
||
|
{
|
||
|
void StartCommunicationEndPoint();
|
||
|
void CloseCommunicationEndPoint();
|
||
|
}
|
||
|
}
|