summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/IOR_MCast/server.cpp
blob: a8cd25a9b2b18735bdee72e4ed6b3d8fab40263a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// $Id$

#include "server_i.h"

int main (int argc, char *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;
}