mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2026-03-10 06:17:42 +01:00
19 lines
397 B
C++
19 lines
397 B
C++
#include "ClientInterface.h"
|
|
|
|
namespace sls {
|
|
|
|
class MatterhornClientInterface : public ClientInterface {
|
|
|
|
public:
|
|
MatterhornClientInterface(
|
|
const uint16_t portNumber = DEFAULT_TCP_CNTRL_PORTNO);
|
|
|
|
~MatterhornClientInterface() = default;
|
|
|
|
private:
|
|
ReturnCode get_version(ServerInterface &socket);
|
|
|
|
static std::string getMatterhornServerVersion();
|
|
};
|
|
|
|
} // namespace sls
|