Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / examples / CSD_Strategy / ThreadPool5 / client_main.cpp
blob7dd626716ac655ae9a097662aa7e07244e775457
1 #include "ClientApp.h"
2 #include "ace/Log_Msg.h"
3 #include "ace/SString.h"
4 #include "tao/Exception.h"
7 int
8 ACE_TMAIN(int argc, ACE_TCHAR *argv[])
10 ACE_LOG_MSG->priority_mask(LM_TRACE |
11 LM_DEBUG |
12 LM_INFO |
13 LM_NOTICE |
14 LM_WARNING |
15 LM_ERROR |
16 LM_CRITICAL |
17 LM_ALERT |
18 LM_EMERGENCY,
19 ACE_Log_Msg::PROCESS);
22 ClientApp app;
24 try
26 int ret = app.run(argc,argv);
27 return ret == 1 ? 0 : ret;
29 catch (const CORBA::Exception& ex)
31 ex._tao_print_exception ("Caught exception:");
33 catch (...)
35 ACE_ERROR((LM_ERROR,
36 "(%P|%t) Unknown (...) exception caught in main() "
37 "for ClientApp\n"));
40 return 1;