using System;

/* This is an interface which would be implemented 
 * by UnixCommunication and WinCommunication.
 */

namespace sscs.communication
{

interface Communication
{
    void StartCommunicationEndPoint();
    void CloseCommunicationEndPoint();
}
}