blob: a075b5c69658b92d4a7eebc4adbeac536494d5d1 (
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
|
// $Id$
#include "Collocation_Tester.h"
#include "tao/Strategies/advanced_resource.h"
ACE_RCSID(Collocation, main, "$Id$")
int main (int argc, char *argv[])
{
ACE_TRY_NEW_ENV
{
Collocation_Test coll_test;
coll_test.init (argc, argv ACE_ENV_ARG_PARAMETER);
coll_test.run ();
coll_test.shutdown ();
}
ACE_CATCHANY
{
ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION, "Uncaught exception: ");
}
ACE_ENDTRY;
return 0;
}
|