mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2026-05-30 09:58:27 +02:00
14 lines
303 B
C++
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
|