#include <Map_T.h>
Inheritance diagram for ACE_Map_Impl_Iterator_Adapter:


Public Types | |
| typedef IMPLEMENTATION | implementation |
Public Methods | |
| ACE_Map_Impl_Iterator_Adapter (const IMPLEMENTATION &impl) | |
| Constructor. More... | |
| virtual | ~ACE_Map_Impl_Iterator_Adapter (void) |
| Destructor. More... | |
| virtual ACE_Iterator_Impl< T > * | clone (void) const |
| Clone. More... | |
| virtual int | compare (const ACE_Iterator_Impl< T > &rhs) const |
| Comparison. More... | |
| virtual T | dereference (void) const |
| Dereference. More... | |
| virtual void | plus_plus (void) |
| Advance. More... | |
| virtual void | minus_minus (void) |
| Reverse. More... | |
| IMPLEMENTATION & | impl (void) |
| Accessor to implementation object. More... | |
Protected Attributes | |
| IMPLEMENTATION | implementation_ |
| All implementation details are forwarded to this class. More... | |
Implementation to be provided by <IMPLEMENTATION>.
Definition at line 447 of file Map_T.h.
|
|||||
|
|
|
||||||||||
|
Constructor.
Definition at line 233 of file Map_T.i.
00234 : implementation_ (impl) 00235 { 00236 } |
|
||||||||||
|
Destructor.
Definition at line 239 of file Map_T.i.
00240 {
00241 }
|
|
||||||||||
|
Clone.
Implements ACE_Iterator_Impl. Definition at line 244 of file Map_T.i. References ACE_NEW_RETURN.
00245 {
00246 ACE_Iterator_Impl<T> *temp = 0;
00247 ACE_NEW_RETURN (temp,
00248 (ACE_Map_Impl_Iterator_Adapter<T, IMPLEMENTATION, ENTRY>) (*this),
00249 0);
00250 return temp;
00251 }
|
|
||||||||||
|
Comparison.
Implements ACE_Iterator_Impl. Definition at line 255 of file Map_T.i. References implementation_.
00256 {
00257 const ACE_Map_Impl_Iterator_Adapter<T, IMPLEMENTATION, ENTRY> &rhs_local
00258 = ACE_dynamic_cast_3_ref (const ACE_Map_Impl_Iterator_Adapter, T, IMPLEMENTATION, ENTRY, rhs);
00259
00260 return this->implementation_ == rhs_local.implementation_;
00261 }
|
|
||||||||||
|
Dereference.
Implements ACE_Iterator_Impl. Definition at line 264 of file Map_T.i. References implementation_.
00265 {
00266 ENTRY &entry = *this->implementation_;
00267 return T (entry.ext_id_,
00268 entry.int_id_);
00269 }
|
|
||||||||||
|
Accessor to implementation object.
Definition at line 284 of file Map_T.i. References implementation_.
00285 {
00286 return this->implementation_;
00287 }
|
|
||||||||||
|
Reverse.
Implements ACE_Iterator_Impl. Definition at line 278 of file Map_T.i. References implementation_.
00279 {
00280 --this->implementation_;
00281 }
|
|
||||||||||
|
Advance.
Implements ACE_Iterator_Impl. Definition at line 272 of file Map_T.i. References implementation_.
00273 {
00274 ++this->implementation_;
00275 }
|
|
|||||
|
All implementation details are forwarded to this class.
Definition at line 482 of file Map_T.h. Referenced by compare, dereference, impl, minus_minus, and plus_plus. |
1.2.14 written by Dimitri van Heesch,
© 1997-2002