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


Member Typedef Documentation

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

Definition at line 636 of file emobject.h.

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

Definition at line 637 of file emobject.h.


Constructor & Destructor Documentation

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

Definition at line 1052 of file emobject.cpp.

01052                                                                    :
01053         map< string, EMObject >::iterator( parent_it )
01054 {
01055 }

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

Definition at line 641 of file emobject.h.

00641 {}

Dict::iterator::iterator const iterator that  ) 
 

Definition at line 1058 of file emobject.cpp.

01058                                              :
01059         map < string, EMObject >::iterator( that )
01060 {
01061 }


Member Function Documentation

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

Definition at line 1064 of file emobject.cpp.

01065 {
01066         if( this != &that )
01067         {
01068                 map < string, EMObject >::iterator::operator=( that );
01069         }
01070         return *this;
01071 }


The documentation for this class was generated from the following files:
Generated on Mon Jul 19 13:06:03 2010 for EMAN2 by  doxygen 1.4.4