/*! * @file network_socket.h * Main interface for the network module. Manages all the modules */ #ifndef _NETWORK_SOCKET #define _NETWORK_SOCKET class NetworkSocket { public: NetworkSocket(); ~NetworkSocket(); void connectToServer(); void listen(); void disconnectServer(); void writeBytes(); void readBytes(); }; #endif /* _NETWORK_SOCKET */