Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / TAO / orbsvcs / tests / IOR_MCast / server.cpp
blob487d61009a47c7bad09eeb2693b9dee6c2a9b3ff
1 #include "server_i.h"
3 int ACE_TMAIN (int argc, ACE_TCHAR *argv[])
5 try
7 Server_i svr_i;
9 const int init_result = svr_i.init (argc, argv);
11 if (init_result != 0)
12 return 1;
14 catch (const CORBA::Exception& ex)
16 ex._tao_print_exception ("CORBA exception raised in server!");
19 return 0;