blob: 48c04693ff4c57ab3c1f456e4723191fe6d8925d (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
// $Id$
#include "../Simple_util.h"
#include "AccountManager_i.h"
// This is the main driver program for the time and date server.
int
main (int argc, char *argv[])
{
Server<AccountManager_i> server;
ACE_DEBUG ((LM_DEBUG,
"\n\tBank server\n\n"));
ACE_TRY_NEW_ENV
{
if (server.init ("Bank",
argc,
argv
ACE_ENV_ARG_PARAMETER) == -1)
return 1;
else
{
server.run (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_TRY_CHECK;
}
}
ACE_CATCH (CORBA::UserException, userex)
{
ACE_PRINT_EXCEPTION (userex,"User Exception");
return -1;
}
ACE_CATCH (CORBA::SystemException, sysex)
{
ACE_PRINT_EXCEPTION (sysex,"System Exception");
return -1;
}
ACE_ENDTRY;
return 0;
}
#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)
template class Server<AccountManager_i>;
#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)
#pragma instantiate Server<AccountManager_i>
#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */
|