Main Page | Modules | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members

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


Member Typedef Documentation

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

Definition at line 640 of file emobject.h.

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

Definition at line 641 of file emobject.h.


Constructor & Destructor Documentation

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

Definition at line 1092 of file emobject.cpp.

01092                                                                    :
01093         map< string, EMObject >::iterator( parent_it )
01094 {
01095 }

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

Definition at line 645 of file emobject.h.

00645 {}

Dict::iterator::iterator const iterator that  ) 
 

Definition at line 1098 of file emobject.cpp.

01098                                              :
01099         map < string, EMObject >::iterator( that )
01100 {
01101 }


Member Function Documentation

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

Definition at line 1104 of file emobject.cpp.

01105 {
01106         if( this != &that )
01107         {
01108                 map < string, EMObject >::iterator::operator=( that );
01109         }
01110         return *this;
01111 }


The documentation for this class was generated from the following files:
Generated on Tue Jul 12 13:50:34 2011 for EMAN2 by  doxygen 1.3.9.1