#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.
|
Definition at line 645 of file emobject.h. |
|
Definition at line 646 of file emobject.h. |
|
Definition at line 1143 of file emobject.cpp. 01143 : 01144 map< string, EMObject >::iterator( parent_it ) 01145 { 01146 }
|
|
Definition at line 650 of file emobject.h. 00650 {}
|
|
Definition at line 1149 of file emobject.cpp. 01149 : 01150 map < string, EMObject >::iterator( that ) 01151 { 01152 }
|
|
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 }
|