summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/Bug_1635_Regression/client.cpp
blob: aac3e960c89b15e3d4cd5ab5c7d98b2d5f779502 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
// $Id$
//
#include "tao/ORB.h"

int
ACE_TMAIN(int argc, ACE_TCHAR *argv[])
{

  try
    {
      CORBA::ORB_var orb =
        CORBA::ORB_init (argc, argv);
    }
  catch (const CORBA::Exception& ex)
    {
      ex._tao_print_exception ("SERVER (%P): Caught exception:");
      return 1;
    }

  return 0;
}