#ifndef __net_service_hpp__ #define __net_service_hpp__ #include struct client; struct worker; struct tdoa_sync; struct net_service:service_callback { worker* m_loc_worker; tdoa_sync*m_sync_worker; net_service(); ~net_service(); void on_message(const std::shared_ptr &clt,const char*data,size_t len); void on_timer(); void on_connect(const std::shared_ptr &clt); }; #endif