From: Christian P. <cp...@us...> - 2005-01-07 13:38:31
|
Update of /cvsroot/pclasses/pclasses2/include/pclasses/Net In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4303/include/pclasses/Net Modified Files: NetworkAddress.h Log Message: Changed return-type of NetworkAddress::str() from Unicode::String to std::string. Fixed bug in addr-family ctor of NetworkAddress. Index: NetworkAddress.h =================================================================== RCS file: /cvsroot/pclasses/pclasses2/include/pclasses/Net/NetworkAddress.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- NetworkAddress.h 23 Dec 2004 04:32:16 -0000 1.2 +++ NetworkAddress.h 7 Jan 2005 13:38:22 -0000 1.3 @@ -22,7 +22,7 @@ #define P_Net_NetworkAddress_h #include <pclasses/BasicTypes.h> -#include <pclasses/Unicode/String.h> +#include <string> namespace P { @@ -41,7 +41,7 @@ size_t addrLen() const throw(); - virtual Unicode::String str() const = 0; + virtual std::string str() const = 0; virtual NetworkAddress* clone() const = 0; |