20 lines
551 B
Plaintext
20 lines
551 B
Plaintext
using DTS.Common.ICommunication;
|
|
|
|
namespace DTS.DASLib.Command.SLICE.RealtimeCommands
|
|
{
|
|
public class EndRealtimeMode : RealtimeCommandBase
|
|
{
|
|
protected override Commands _Command => Commands.EndRealtimeMode;
|
|
|
|
public EndRealtimeMode(DTS.Common.Interface.DASFactory.ICommunication sock)
|
|
: base(sock)
|
|
{
|
|
}
|
|
|
|
public EndRealtimeMode(DTS.Common.Interface.DASFactory.ICommunication sock, int timeoutMillisec)
|
|
: base(sock, timeoutMillisec)
|
|
{
|
|
}
|
|
}
|
|
}
|