CASA/c_micasad/communication/ICommunication.cs
2005-10-11 19:51:00 +00:00

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();
}
}