diff options
Diffstat (limited to 'server/src/queryhandlerpentominos.h')
-rw-r--r-- | server/src/queryhandlerpentominos.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/src/queryhandlerpentominos.h b/server/src/queryhandlerpentominos.h index 9cc2cbf..9c56d07 100644 --- a/server/src/queryhandlerpentominos.h +++ b/server/src/queryhandlerpentominos.h @@ -41,14 +41,14 @@ */ class QueryHandlerPentominos : public QueryHandler { public: - QueryHandlerPentominos(TCPSocket *socket, std::string cpr); + QueryHandlerPentominos(TCPSocket &socket, std::string cpr); ~QueryHandlerPentominos() {} // Execute all queries. QueryResult exec(Query &query); private: - TCPSocket *socket; + TCPSocket &socket; std::string cpr; }; |