diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-05-09 13:07:41 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-05-09 13:07:41 +0000 |
commit | 197b6de9281b52d0b53c4b3fa3312e371b4469a9 (patch) | |
tree | bae93f8155da0770f5dd45d12ef1160ee99aed54 /cppe/src/IceE/TraceUtil.cpp | |
parent | Added identityToString and stringToIdentity to Communicator (diff) | |
download | ice-197b6de9281b52d0b53c4b3fa3312e371b4469a9.tar.bz2 ice-197b6de9281b52d0b53c4b3fa3312e371b4469a9.tar.xz ice-197b6de9281b52d0b53c4b3fa3312e371b4469a9.zip |
Fixed proxy and identity t/from string functions to use string converters
Diffstat (limited to 'cppe/src/IceE/TraceUtil.cpp')
-rw-r--r-- | cppe/src/IceE/TraceUtil.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cppe/src/IceE/TraceUtil.cpp b/cppe/src/IceE/TraceUtil.cpp index 1146686af13..fdb8ba947f5 100644 --- a/cppe/src/IceE/TraceUtil.cpp +++ b/cppe/src/IceE/TraceUtil.cpp @@ -14,9 +14,10 @@ #include <IceE/Logger.h> #include <IceE/BasicStream.h> #include <IceE/Protocol.h> -#include <IceE/IdentityUtil.h> #include <IceE/SafeStdio.h> #include <IceE/OperationMode.h> +#include <IceE/Identity.h> +#include <IceE/Instance.h> using namespace std; using namespace Ice; @@ -28,7 +29,7 @@ printIdentityFacetOperation(string& s, BasicStream& stream) Identity identity; identity.__read(&stream); s += "\nidentity = "; - s += identityToString(identity); + s += stream.instance()->identityToString(identity); vector<string> facet; stream.read(facet); |