#include <Portable_Group_Map.h>
Public Member Functions | |
| int | operator() (const PortableGroup::TagGroupTaggedComponent *lhs, const PortableGroup::TagGroupTaggedComponent *rhs) const |
| Returns 1 if equal. | |
Define the Equal_To () method for Object Ids.
Definition at line 57 of file Portable_Group_Map.h.
| int TAO_GroupId_Equal_To::operator() | ( | const PortableGroup::TagGroupTaggedComponent * | lhs, | |
| const PortableGroup::TagGroupTaggedComponent * | rhs | |||
| ) | const |
Returns 1 if equal.
Definition at line 164 of file Portable_Group_Map.cpp.
References ACE_OS::strcmp().
00167 { 00168 return 00169 ACE_OS::strcmp (lhs->group_domain_id, rhs->group_domain_id) == 0 00170 && lhs->object_group_id == rhs->object_group_id 00171 && lhs->object_group_ref_version == rhs->object_group_ref_version; 00172 }
1.4.7