Cosmos/source/Cosmos.Build.Windows/DebugConnectorSerial.cs
kudzu_cp 5a86f2136a
2008-09-20 18:09:11 +00:00

28 lines
756 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.Build.Windows {
public class DebugConnectorSerial : DebugConnector {
protected override void SendData(byte[] aBytes)
{
throw new NotImplementedException();
}
protected override void Next(int aPacketSize, Action<byte[]> aCompleted)
{
throw new NotImplementedException();
}
protected override void PacketText(byte[] aPacket)
{
throw new NotImplementedException();
}
protected override void PacketTracePoint(byte[] aPacket)
{
throw new NotImplementedException();
}
}
}