blob: c9edd7d053c216cb715587b899921c08f10878cb (
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
30
31
32
33
34
|
// $Id$
#include "Trading_Service.h"
#include "ace/OS_main.h"
// Driver function for the TAO Trading Service.
int
ACE_TMAIN (int argc, ACE_TCHAR* argv[])
{
Trading_Service trader;
try
{
int check =
trader.init (argc, argv);
if (check != -1)
{
trader.run ();
}
else
ACE_ERROR_RETURN ((LM_ERROR,
"Failed to initialize the trader.\n"),
1);
}
catch (const CORBA::Exception& ex)
{
ex._tao_print_exception ("Trading Service");
return 1;
}
return 0;
}
|