2 //=============================================================================
6 * Implements the interface in Identity.idl.
8 * @author Marina Spivak <marina@cs.wustl.edu>
10 //=============================================================================
15 #include "IdentityS.h"
18 public virtual POA_Identity
21 // This class implements Identity.idl interface.
23 /// Constructor - initializes the name of this object.
24 Identity_i (const char *name
);
29 /// Returns the name of this object.
30 virtual void get_name (CORBA::String_out name
);
33 /// Stores the name of this object.
34 CORBA::String_var name_
;
37 #endif /* IDENTITY_I_H_ */