16 lines
333 B
C#
16 lines
333 B
C#
///
|
|
/// Copyright (c) 2017 Sensus Metering Systems
|
|
///
|
|
namespace TBF.BenchControl.Network.Telnet
|
|
{
|
|
public class DummyVT : IVirtualTerminal
|
|
{
|
|
public DummyVT() { }
|
|
|
|
public void ClearScreen() { }
|
|
public void WriteVt(char c) { }
|
|
public void WriteVt(string txt) { }
|
|
public string Text { get { return string.Empty; } }
|
|
}
|
|
}
|