diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2005-07-11 16:41:12 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2005-07-11 16:41:12 +0000 |
commit | 8ff7c2608eb845c3b6b637f4648ae726a11a158b (patch) | |
tree | f1dfb4d3a63752357480561fdd94f37692d8eb47 /cppe/demo/IceE/latency/Client.cpp | |
parent | fix some recent changes to build in J2ME (diff) | |
download | ice-8ff7c2608eb845c3b6b637f4648ae726a11a158b.tar.bz2 ice-8ff7c2608eb845c3b6b637f4648ae726a11a158b.tar.xz ice-8ff7c2608eb845c3b6b637f4648ae726a11a158b.zip |
Put back IceUtil namespace
Diffstat (limited to 'cppe/demo/IceE/latency/Client.cpp')
-rw-r--r-- | cppe/demo/IceE/latency/Client.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cppe/demo/IceE/latency/Client.cpp b/cppe/demo/IceE/latency/Client.cpp index 18b6b002af6..0e3b25248cb 100644 --- a/cppe/demo/IceE/latency/Client.cpp +++ b/cppe/demo/IceE/latency/Client.cpp @@ -36,7 +36,7 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) // Initial ping to setup the connection. ping->ice_ping(); - Ice::Time tm = Ice::Time::now(); + IceUtil::Time tm = IceUtil::Time::now(); const int repetitions = 100000; printf("pinging server %d times (this may take a while)\n", repetitions); @@ -45,7 +45,7 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) ping->ice_ping(); } - tm = Ice::Time::now() - tm; + tm = IceUtil::Time::now() - tm; printf("time for %d pings: %fms\n", repetitions, tm.toMilliSecondsDouble()); printf("time per ping: %fms\n", tm.toMilliSecondsDouble() / repetitions); |