using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace LB_VisionProcesses.Communicators.MES
|
{
|
internal class LBMES : BaseCommunicator
|
{
|
public override bool Connect()
|
{
|
throw new NotImplementedException();
|
}
|
|
public override bool Disconnect()
|
{
|
throw new NotImplementedException();
|
}
|
|
public override bool SendMessage(string message)
|
{
|
throw new NotImplementedException();
|
}
|
|
public override bool SendMessage(byte[] message)
|
{
|
throw new NotImplementedException();
|
}
|
}
|
}
|