Files
slsDetectorPackage/slsDetectorServers/matterhonServer/include/StopServer.h
T
mazzol_a 14da1245b4
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 29s
Build on RHEL8 / build (push) Failing after 36s
WIP
2026-02-20 16:58:10 +01:00

14 lines
272 B
C++

#include "MatterhornServer.h"
#include <cstdint>
namespace sls {
// TODO: should this inherit from MatterhornServer or a base class
class StopServer : public MatterhornServer {
public:
StopServer(uint16_t port);
~StopServer() = default;
};
} // namespace sls