Changes to attempt to silence bcc64x
[ACE_TAO.git] / TAO / examples / ior_corbaloc / client.cpp
blob2026ed3214ff7f4af699df96bf1d1f46067d12c0
2 //=============================================================================
3 /**
4 * @file client.cpp
6 * This implements a simple CORBA client for the
7 * corbaloc: style IOR parser
9 * @author Priyanka Gontla <pgontla@ece.uci.edu>
11 //=============================================================================
14 #include "ior_corbaloc_client_i.h"
16 int ACE_TMAIN (int argc, ACE_TCHAR *argv [])
18 try
20 IOR_corbaloc_Client_i client;
22 int init_result;
23 init_result = client.init (argc, argv);
25 if (init_result == 0)
27 client.run ();
29 return 0;
31 catch (const CORBA::SystemException&)
35 catch (const CORBA::Exception& ex)
37 ex._tao_print_exception ("client");
40 return 0;