#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 630 of file emobject.h.
typedef std::bidirectional_iterator_tag EMAN::Dict::iterator::iterator_category |
Definition at line 633 of file emobject.h.
typedef pair<string, EMObject> EMAN::Dict::iterator::value_type |
Definition at line 634 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 960 of file emobject.cpp.
00961 { 00962 if( this != &that ) 00963 { 00964 map < string, EMObject >::iterator::operator=( that ); 00965 } 00966 return *this; 00967 }