// ********************************************************************** // // Copyright (c) 2003-2012 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. // // ********************************************************************** #include #include #include using namespace std; using namespace Ice; using namespace Test; class TestClient : public Application { public: virtual int run(int, char*[]); }; int main(int argc, char* argv[]) { TestClient app; return app.main(argc, argv); } int TestClient::run(int argc, char* argv[]) { TestIntfPrx allTests(const CommunicatorPtr&, bool); TestIntfPrx obj = allTests(communicator(), false); obj->shutdown(); return EXIT_SUCCESS; }