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