Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/network/src/lib/network/network_socket.h @ 5533

Last change on this file since 5533 was 5533, checked in by patrick, 18 years ago

network: some small changes in the comments and formatting in makefile.am

File size: 378 bytes
Line 
1/*!
2 * @file network_socket.h
3  *  Main interface for the network module. Manages all the modules
4
5*/
6
7#ifndef _NETWORK_SOCKET
8#define _NETWORK_SOCKET
9
10
11class NetworkSocket
12{
13
14public:
15
16  NetworkSocket();
17  ~NetworkSocket();
18
19  void connectToServer();
20  void listen();
21  void disconnectServer();
22  void writeBytes();
23        void readBytes();
24
25};
26
27
28
29#endif /* _NETWORK_SOCKET */
Note: See TracBrowser for help on using the repository browser.