#pragma once #include #include #include "thread.h" class ServerThread : public Thread { std::list mClients; public: ServerThread(); virtual ~ServerThread(); void operator()(); };