#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.
|
Definition at line 640 of file emobject.h. |
|
Definition at line 641 of file emobject.h. |
|
Definition at line 1092 of file emobject.cpp. 01092 : 01093 map< string, EMObject >::iterator( parent_it ) 01094 { 01095 }
|
|
Definition at line 645 of file emobject.h. 00645 {}
|
|
Definition at line 1098 of file emobject.cpp. 01098 : 01099 map < string, EMObject >::iterator( that ) 01100 { 01101 }
|
|
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 }
|