summaryrefslogtreecommitdiff
path: root/orbsvcs/tests/IOR_MCast/client.cpp
blob: f70cc79d142b35bddbcdcb0cc27f5865e76d1884 (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
// $Id$

#include "ior_mcast_client_i.h"

int ACE_TMAIN (int argc, ACE_TCHAR *argv[])
{
  try
    {
      ior_mcast_Client_i client;

      int status = client.init (argc, argv);
      ACE_UNUSED_ARG (status);

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

  return 0;
}