LRAUV  revA
SocketClient.h
Go to the documentation of this file.
1 
9 #ifndef SOCKETCLIENT_H_
10 #define SOCKETCLIENT_H_
11 
12 #include "Socket.h"
13 
20 class SocketClient : public Socket
21 {
22 public:
23 
24  SocketClient( const char* host, int port ) throw( SocketException );
25 
51  SocketClient( const char* host, int port, int timeoutMillis ) throw( SocketException );
52 
53  virtual ~SocketClient()
54  {}
55 };
56 
57 
58 #endif /*SOCKETCLIENT_H_*/
Implements a Socket client for communicating with SocketServer instances.
Definition: SocketClient.h:20
A wrapper around sys/socket.h for tcp communications between Socket instances – use daughter classes...
Definition: Socket.h:33
Definition: SocketException.h:6
virtual ~SocketClient()
Definition: SocketClient.h:53
SocketClient(const char *host, int port)
Definition: SocketClient.cpp:11
Contains the Socket class declaration.