#include <Hash_Map_Manager_T.h>
Inheritance diagram for ACE_Hash_Map_Const_Iterator:


Public Methods | |
| ACE_Hash_Map_Const_Iterator (const ACE_Hash_Map_Manager< EXT_ID, INT_ID, ACE_LOCK > &mm, int tail=0) | |
| Construct from map. More... | |
| ACE_Hash_Map_Const_Iterator (const ACE_Hash_Map_Const_Iterator_Ex< EXT_ID, INT_ID, ACE_Hash< EXT_ID >, ACE_Equal_To< EXT_ID >, ACE_LOCK > &base) | |
| Construct from base. More... | |
| ACE_Hash_Map_Const_Iterator< EXT_ID, INT_ID, ACE_LOCK > & | operator= (const ACE_Hash_Map_Const_Iterator_Ex< EXT_ID, INT_ID, ACE_Hash< EXT_ID >, ACE_Equal_To< EXT_ID >, ACE_LOCK > &base) |
| Assignment from base. More... | |
Definition at line 892 of file Hash_Map_Manager_T.h.
|
||||||||||||||||
|
Construct from map.
Definition at line 912 of file Hash_Map_Manager_T.i.
00914 : ACE_Hash_Map_Const_Iterator_Ex<EXT_ID, INT_ID, ACE_Hash<EXT_ID>, ACE_Equal_To<EXT_ID>, ACE_LOCK> (mm, 00915 tail) 00916 { 00917 } |
|
||||||||||
|
Construct from base.
Definition at line 920 of file Hash_Map_Manager_T.i.
00921 : ACE_Hash_Map_Const_Iterator_Ex<EXT_ID, INT_ID, ACE_Hash<EXT_ID>, ACE_Equal_To<EXT_ID>, ACE_LOCK> (base) 00922 { 00923 } |
|
||||||||||
|
Assignment from base.
Definition at line 926 of file Hash_Map_Manager_T.i.
00927 {
00928 if (this != &rhs)
00929 {
00930 ACE_Hash_Map_Const_Iterator_Ex<EXT_ID, INT_ID, ACE_Hash<EXT_ID>, ACE_Equal_To<EXT_ID>, ACE_LOCK> &base = *this;
00931
00932 base = rhs;
00933 }
00934
00935 return *this;
00936 }
|
1.2.14 written by Dimitri van Heesch,
© 1997-2002