Changes to attempt to silence bcc64x
[ACE_TAO.git] / TAO / examples / Simple / chat / client.cpp
blobddb87e5aa55fedd0113386d605faa5ffd440f505
2 //=============================================================================
3 /**
4 * @file client.cpp
6 * The Chat client program entry point.
8 * @author Pradeep Gore <pradeep@cs.wustl.edu>
9 */
10 //=============================================================================
13 #include "Client_i.h"
15 int
16 ACE_TMAIN(int argc, ACE_TCHAR *argv[])
18 try
20 Client_i client_i;
22 if (client_i.init (argc, argv) == -1 || client_i.run () == -1)
23 return -1;
25 catch (const CORBA::Exception& ex)
27 ex._tao_print_exception ("client::main\t\n");
28 return -1;
31 return 0;