Changes to attempt to silence bcc64x
[ACE_TAO.git] / TAO / orbsvcs / examples / Log / Basic / main.cpp
blobf5fc7a9abe463d783eb3ba367ca0379c48f4634c
1 #include "TLS_Client.h"
2 #include "ace/OS_main.h"
4 int
5 ACE_TMAIN (int argc, ACE_TCHAR *argv[])
7 TLS_Client client; // Telecom Log Service Client
9 try
11 client.init (argc, argv); //Init the Client
13 client.run_tests (); //Init the Client
16 catch (const CORBA::UserException& ue)
18 ue._tao_print_exception ("TLS_Client user error: ");
19 return 1;
21 catch (const CORBA::SystemException& se)
23 se._tao_print_exception ("TLS_Client system error: ");
24 return 1;
27 return 0;