mirror of
https://github.com/modelec/TCPSocketServer.git
synced 2026-03-26 01:20:32 +01:00
12 lines
212 B
C++
12 lines
212 B
C++
#pragma once
|
|
|
|
#include <TCPSocket/TCPServer.hpp>
|
|
|
|
class ModelecServer : public TCPServer {
|
|
|
|
public:
|
|
ModelecServer(int port);
|
|
|
|
void handleMessage(const std::string& message, int clientSocket) override;
|
|
};
|