Files
slsDetectorPackage/slsDetectorServers/matterhonServer/include/StopServer.h
T
2026-04-10 11:31:52 +02:00

14 lines
303 B
C++

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