diff options
author | Michi Henning <michi@zeroc.com> | 2004-08-31 04:36:28 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2004-08-31 04:36:28 +0000 |
commit | b48723e3d4ba8b7d3626c052ff398697731370a2 (patch) | |
tree | c038aa8cea773a7ae45dc511ea5548730801884b /cpp/test/Ice/slicing/exceptions/Client.cpp | |
parent | initial check-in (diff) | |
download | ice-b48723e3d4ba8b7d3626c052ff398697731370a2.tar.bz2 ice-b48723e3d4ba8b7d3626c052ff398697731370a2.tar.xz ice-b48723e3d4ba8b7d3626c052ff398697731370a2.zip |
Deprecation of global Slice definitions.
Diffstat (limited to 'cpp/test/Ice/slicing/exceptions/Client.cpp')
-rw-r--r-- | cpp/test/Ice/slicing/exceptions/Client.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cpp/test/Ice/slicing/exceptions/Client.cpp b/cpp/test/Ice/slicing/exceptions/Client.cpp index afd4f697e01..1eccc9709a7 100644 --- a/cpp/test/Ice/slicing/exceptions/Client.cpp +++ b/cpp/test/Ice/slicing/exceptions/Client.cpp @@ -12,12 +12,13 @@ #include <Test.h> using namespace std; +using namespace Test; int run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) { - TestPrx allTests(const Ice::CommunicatorPtr&); - TestPrx Test = allTests(communicator); + TestIntfPrx allTests(const Ice::CommunicatorPtr&); + TestIntfPrx Test = allTests(communicator); Test->shutdown(); return EXIT_SUCCESS; } |