summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/adapterDeactivation/Client.cpp
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2004-08-31 04:36:28 +0000
committerMichi Henning <michi@zeroc.com>2004-08-31 04:36:28 +0000
commitb48723e3d4ba8b7d3626c052ff398697731370a2 (patch)
treec038aa8cea773a7ae45dc511ea5548730801884b /cpp/test/Ice/adapterDeactivation/Client.cpp
parentinitial check-in (diff)
downloadice-b48723e3d4ba8b7d3626c052ff398697731370a2.tar.bz2
ice-b48723e3d4ba8b7d3626c052ff398697731370a2.tar.xz
ice-b48723e3d4ba8b7d3626c052ff398697731370a2.zip
Deprecation of global Slice definitions.
Diffstat (limited to 'cpp/test/Ice/adapterDeactivation/Client.cpp')
-rw-r--r--cpp/test/Ice/adapterDeactivation/Client.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/cpp/test/Ice/adapterDeactivation/Client.cpp b/cpp/test/Ice/adapterDeactivation/Client.cpp
index e11d09a5d62..9b192abb518 100644
--- a/cpp/test/Ice/adapterDeactivation/Client.cpp
+++ b/cpp/test/Ice/adapterDeactivation/Client.cpp
@@ -13,6 +13,7 @@
using namespace std;
using namespace Ice;
+using namespace Test;
class TestClient : public Application
{
@@ -31,7 +32,7 @@ main(int argc, char* argv[])
int
TestClient::run(int argc, char* argv[])
{
- TestPrx allTests(const CommunicatorPtr&);
- TestPrx obj = allTests(communicator());
+ TestIntfPrx allTests(const CommunicatorPtr&);
+ TestIntfPrx obj = allTests(communicator());
return EXIT_SUCCESS;
}