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

#include "ior_mcast_client_i.h"

int main (int argc, char *argv [])
{


  try
    {

      ior_mcast_Client_i client;

      int init_result;
      init_result = client.init (argc, argv);

      return 0;
    }
  catch (const CORBA::SystemException&)
    {
      //
    }
  catch (const CORBA::Exception& ex)
    {
      ex._tao_print_exception ("client");
    }

  return 0;
}