#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 642 of file emobject.h.
typedef std::bidirectional_iterator_tag EMAN::Dict::iterator::iterator_category |
Definition at line 645 of file emobject.h.
typedef pair<string, EMObject> EMAN::Dict::iterator::value_type |
Definition at line 646 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 1155 of file emobject.cpp.
01156 { 01157 if( this != &that ) 01158 { 01159 map < string, EMObject >::iterator::operator=( that ); 01160 } 01161 return *this; 01162 }