#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.
|
Definition at line 633 of file emobject.h. |
|
Definition at line 634 of file emobject.h. |
|
Definition at line 948 of file emobject.cpp. 00948 : 00949 map< string, EMObject >::iterator( parent_it ) 00950 { 00951 }
|
|
Definition at line 638 of file emobject.h. 00638 {}
|
|
Definition at line 954 of file emobject.cpp. 00954 : 00955 map < string, EMObject >::iterator( that ) 00956 { 00957 }
|
|
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 }
|