#include <emobject.h>
Public Types | |
typedef std::bidirectional_iterator_tag | iterator_category |
typedef pair< string, EMObject > | value_type |
Public Member Functions | |
iterator (map< string, EMObject >::iterator parent_it) | |
virtual | ~iterator () |
iterator (const iterator &that) | |
iterator & | operator= (const iterator &that) |
Definition at line 637 of file emobject.h.
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.
virtual EMAN::Dict::iterator::~iterator | ( | ) | [inline, virtual] |
Dict::iterator::iterator | ( | const iterator & | that | ) |
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 }