summaryrefslogtreecommitdiff
path: root/trunk/TAO/orbsvcs/examples/ORT/sum_server_i.cpp
blob: fe8a7a388336889f255d7adb828cf7c882bb18e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// $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)
{
  return a+b;
}