#include <PG_MemberInfo.h>
Collaboration diagram for TAO_PG_MemberInfo:
Public Member Functions | |
bool | operator== (const TAO_PG_MemberInfo &rhs) const |
Equality operator. | |
Public Attributes | |
CORBA::Object_var | member |
Reference to the member. | |
PortableGroup::Location | location |
The location at which the member resides. |
Structure that contains all member-specific information.
Definition at line 37 of file PG_MemberInfo.h.
TAO_BEGIN_VERSIONED_NAMESPACE_DECL bool TAO_PG_MemberInfo::operator== | ( | const TAO_PG_MemberInfo & | rhs | ) | const |
Equality operator.
For the purposes of the member info set, only the location is important. In particular, if a member already resides at the given location, this equality operator will return true.
Definition at line 11 of file PG_MemberInfo.cpp.
00012 { 00013 // For the purposes of the member info set, only the location is 00014 // important. 00015 return location == rhs.location; 00016 }
The location at which the member resides.
Definition at line 44 of file PG_MemberInfo.h.
Referenced by TAO_PG_ObjectGroupManager::add_member_i().
Reference to the member.
Definition at line 41 of file PG_MemberInfo.h.
Referenced by TAO_PG_ObjectGroupManager::add_member_i().