mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2026-08-12 06:30:32 +02:00
14 lines
272 B
C++
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
|