blob: cd6788dc87cb5cf5804ab90fb6f00c9839cb78ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
//=============================================================================
/**
* @file Identity.idl
*
* Interface for a toy CORBA service useful for
* testing/demonstrating functionality of the Load
* Balancing service defined in Load_Balancer.idl.
*
*
* @author Marina Spivak <marina@cs.wustl.edu> with modifications by Bala Natarajan <bala@cs.wustl.edu>
*/
//=============================================================================
interface Identity
{
void get_name (out string name);
// Obtain the name of this object.
};
|