summaryrefslogtreecommitdiff
path: root/TAO/tests/Smart_Proxies/Collocation/main.cpp
blob: d5eceaf83415f56d58d9b53d6b81c7801f78ca7d (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 "Coll_Tester.h"
#include "tao/Strategies/advanced_resource.h"

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

  try
    {
      coll_test.init (argc, argv);

      coll_test.run ();
    }
  catch (const CORBA::Exception& ex)
    {
      ex._tao_print_exception ("Uncaught exception: ");
    }

  return 0;
}