summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/IOR_MCast/server.cpp
blob: d12401d49a947eb20f4092e1b8b38136b0c607ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include "server_i.h"

int ACE_TMAIN (int argc, ACE_TCHAR *argv[])
{
  try
    {
      Server_i svr_i;

      const int init_result = svr_i.init (argc, argv);

      if (init_result != 0)
        return 1;

    }
  catch (const CORBA::Exception& ex)
    {
      ex._tao_print_exception ("CORBA exception raised in server!");
    }

  return 0;
}