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 629 of file emobject.h.


Member Typedef Documentation

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

Definition at line 632 of file emobject.h.

Definition at line 633 of file emobject.h.


Constructor & Destructor Documentation

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

Definition at line 978 of file emobject.cpp.

00978                                                                    :
00979         map< string, EMObject >::iterator( parent_it )
00980 {
00981 }

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

Definition at line 637 of file emobject.h.

00637 {}

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

Definition at line 984 of file emobject.cpp.

00984                                              :
00985         map < string, EMObject >::iterator( that )
00986 {
00987 }


Member Function Documentation

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

Definition at line 990 of file emobject.cpp.

00991 {
00992         if( this != &that )
00993         {
00994                 map < string, EMObject >::iterator::operator=( that );
00995         }
00996         return *this;
00997 }


The documentation for this class was generated from the following files:

Generated on Sat Nov 21 02:20:19 2009 for EMAN2 by  doxygen 1.5.6