Merge pull request #2301 from sonndinh/remove-dup-reactor-functions
[ACE_TAO.git] / TAO / orbsvcs / tests / IOR_MCast / client.cpp
blob5eb4632ea19907405cfd54e5e28ab8e0fb81a778
1 #include "ior_mcast_client_i.h"
3 int ACE_TMAIN (int argc, ACE_TCHAR *argv[])
5 try
7 ior_mcast_Client_i client;
9 int status = client.init (argc, argv);
10 ACE_UNUSED_ARG (status);
12 return 0;
14 catch (const CORBA::SystemException&)
16 // Ignore
18 catch (const CORBA::Exception& ex)
20 ex._tao_print_exception ("client");
23 return 0;