37#ifndef SCPINullTransport_h
38#define SCPINullTransport_h
50 virtual std::string GetConnectionString()
override;
51 static std::string GetTransportName();
53 virtual bool SendCommand(
const std::string& cmd)
override;
54 virtual std::string ReadReply(
bool endOnSemicolon =
true, std::function<
void(
float)> progress =
nullptr)
override;
55 virtual size_t ReadRawData(
size_t len,
unsigned char* buf, std::function<
void(
float)> progress =
nullptr)
override;
56 virtual void SendRawData(
size_t len,
const unsigned char* buf)
override;
58 virtual bool IsCommandBatchingSupported()
override;
59 virtual bool IsConnected()
override;
Dummy SCPITransport for demo scope etc.
Definition: SCPINullTransport.h:45
Abstraction of a transport layer for moving SCPI data between endpoints.
Definition: SCPITransport.h:47