|
UniSet
1.7.0
|
00001 // ------------------------------------------------------------------------- 00002 #ifndef UTCPStream_H_ 00003 #define UTCPStream_H_ 00004 // ------------------------------------------------------------------------- 00005 #include <string> 00006 #include <cc++/socket.h> 00007 // ------------------------------------------------------------------------- 00008 class UTCPStream: 00009 public ost::TCPStream 00010 { 00011 public: 00012 00013 UTCPStream(); 00014 virtual ~UTCPStream(); 00015 00016 void create( const std::string& hname, int port, bool throwflag=false, timeout_t timer=0 ); 00017 00018 protected: 00019 private: 00020 00021 }; 00022 // ------------------------------------------------------------------------- 00023 #endif // UTCPStream_H_ 00024 // -------------------------------------------------------------------------
1.7.6.1