1 //=============================================================================
5 * client side main program
7 * @author Aniruddha Gokhale
9 //=============================================================================
11 #include "demux_test_client.h"
12 #include "tao/debug.h"
15 ACE_TMAIN(int argc
, ACE_TCHAR
*argv
[])
17 // Set TAO_debug_level to 0 to ensure silent running unless
18 // debugging is explicitly invoked
21 Demux_Test_Client demux_test_client
;
25 int r
= demux_test_client
.init (argc
, argv
);
29 demux_test_client
.run ();
31 catch (const CORBA::SystemException
& sysex
)
33 sysex
._tao_print_exception ("System Exception");
36 catch (const CORBA::UserException
& userex
)
38 userex
._tao_print_exception ("User Exception");