root/vtcross/branches/trnewman/CR_shell/src/socket/ClientSocket.h @ 70

Revision 35, 378 bytes (checked in by trnewman, 16 years ago)

adding c++

Line 
1// Definition of the ClientSocket class
2
3#ifndef ClientSocket_class
4#define ClientSocket_class
5
6#include "Socket.h"
7
8
9class ClientSocket : private Socket
10{
11 public:
12
13  ClientSocket ( std::string host, int port );
14  virtual ~ClientSocket(){};
15
16  const ClientSocket& operator << ( const std::string& ) const;
17  const ClientSocket& operator >> ( std::string& ) const;
18
19};
20
21
22#endif
Note: See TracBrowser for help on using the browser.