2 //=============================================================================
6 * Implements the interface in Identity.idl.
8 * @author Marina Spivak <marina@cs.wustl.edu> with modifications by Bala Natarajan <bala@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
,
25 PortableServer::POA_ptr poa
);
30 /// Returns the name of this object.
31 virtual void get_name (CORBA::String_out name
);
33 /// Method for the POA that will return the persistent POA_ptr stored
35 PortableServer::POA_ptr
_default_POA ();
38 /// Stores the name of this object.
39 CORBA::String_var name_
;
41 PortableServer::POA_var poa_
;
44 #endif /* IDENTITY_I_H_ */