blob: 205cabf7e1e74b7f0cf976c264542d2aa617897e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// $Id$
#include "sum_server_i.h"
ACE_RCSID (ORT,
sum_server_i,
"$Id$")
sum_server_i::sum_server_i ()
{
}
CORBA::Long
sum_server_i::add_variables (CORBA::Long a,
CORBA::Long b
TAO_ENV_ARG_DECL_NOT_USED)
ACE_THROW_SPEC ((CORBA::SystemException))
{
cout << __FILE__ << __LINE__ << endl;
return a+b;
}
|