EMAN::Dict::iterator Class Reference

Non const iterator support for the Dict object This is just a wrapper, everything is inherited from the map<string,EMObject>::iterator so the interface is the same as you would expect i.e for ( Dict::iterator it = params.begin(); it != params.end(); ++it ). More...

#include <emobject.h>

List of all members.

Public Types

typedef std::bidirectional_iterator_tag iterator_category
typedef pair< string, EMObjectvalue_type

Public Member Functions

 iterator (map< string, EMObject >::iterator parent_it)
virtual ~iterator ()
 iterator (const iterator &that)
iteratoroperator= (const iterator &that)


Detailed Description

Non const iterator support for the Dict object This is just a wrapper, everything is inherited from the map<string,EMObject>::iterator so the interface is the same as you would expect i.e for ( Dict::iterator it = params.begin(); it != params.end(); ++it ).

Author:
David Woolford
Date:
Mid 2007

Definition at line 630 of file emobject.h.


Member Typedef Documentation

typedef std::bidirectional_iterator_tag EMAN::Dict::iterator::iterator_category

Definition at line 633 of file emobject.h.

typedef pair<string, EMObject> EMAN::Dict::iterator::value_type

Definition at line 634 of file emobject.h.


Constructor & Destructor Documentation

Dict::iterator::iterator ( map< string, EMObject >::iterator  parent_it  ) 

Definition at line 948 of file emobject.cpp.

00948                                                                    :
00949         map< string, EMObject >::iterator( parent_it )
00950 {
00951 }

virtual EMAN::Dict::iterator::~iterator (  )  [inline, virtual]

Definition at line 638 of file emobject.h.

00638 {}

Dict::iterator::iterator ( const iterator that  ) 

Definition at line 954 of file emobject.cpp.

00954                                              :
00955         map < string, EMObject >::iterator( that )
00956 {
00957 }


Member Function Documentation

Dict::iterator & Dict::iterator::operator= ( const iterator that  ) 

Definition at line 960 of file emobject.cpp.

00961 {
00962         if( this != &that )
00963         {
00964                 map < string, EMObject >::iterator::operator=( that );
00965         }
00966         return *this;
00967 }


The documentation for this class was generated from the following files:
Generated on Tue May 25 17:15:59 2010 for EMAN2 by  doxygen 1.4.7