summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/IOR_MCast/client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/IOR_MCast/client.cpp')
-rw-r--r--TAO/orbsvcs/tests/IOR_MCast/client.cpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/TAO/orbsvcs/tests/IOR_MCast/client.cpp b/TAO/orbsvcs/tests/IOR_MCast/client.cpp
new file mode 100644
index 00000000000..d227490893d
--- /dev/null
+++ b/TAO/orbsvcs/tests/IOR_MCast/client.cpp
@@ -0,0 +1,29 @@
+// $Id$
+
+#include "ior_mcast_client_i.h"
+
+int main (int argc, char *argv [])
+{
+
+
+ try
+ {
+
+ ior_mcast_Client_i client;
+
+ int init_result;
+ init_result = client.init (argc, argv);
+
+ return 0;
+ }
+ catch (const CORBA::SystemException&)
+ {
+ //
+ }
+ catch (const CORBA::Exception& ex)
+ {
+ ex._tao_print_exception ("client");
+ }
+
+ return 0;
+}