summaryrefslogtreecommitdiff
path: root/cpp/demo/Ice/converter/ClientWithoutConverter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/demo/Ice/converter/ClientWithoutConverter.cpp')
-rw-r--r--cpp/demo/Ice/converter/ClientWithoutConverter.cpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/cpp/demo/Ice/converter/ClientWithoutConverter.cpp b/cpp/demo/Ice/converter/ClientWithoutConverter.cpp
new file mode 100644
index 00000000000..1e04cc4a934
--- /dev/null
+++ b/cpp/demo/Ice/converter/ClientWithoutConverter.cpp
@@ -0,0 +1,30 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2014 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 <Client.h>
+
+using namespace std;
+using namespace Demo;
+
+int
+main(int argc, char* argv[])
+{
+ int status = EXIT_SUCCESS;
+ try
+ {
+ Client app;
+ status = app.main(argc, argv, "config.client");
+ }
+ catch(const Ice::Exception& ex)
+ {
+ cerr << ex << endl;
+ status = EXIT_FAILURE;
+ }
+ return status;
+}