Files
slsDetectorPackage/slsDetectorServers/matterhonServer/include/MatterhornClientInterface.h
T
mazzol_a 2ba38e5cc4
Run Simulator Tests on local RHEL9 / build (push) Failing after 5s
Run Simulator Tests on local RHEL8 / build (push) Failing after 7s
Build on RHEL9 / build (push) Failing after 7s
Build on RHEL8 / build (push) Failing after 14s
WIP
2026-02-16 14:37:44 +01:00

21 lines
457 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);
ReturnCode get_detector_type(ServerInterface &socket);
static std::string getMatterhornServerVersion();
};
} // namespace sls