diff -r f70bbee5350a -r 66e85f44a66f mapstorage.h --- a/mapstorage.h Wed Jun 29 15:41:33 2005 +0000 +++ b/mapstorage.h Wed Jun 29 19:44:30 2005 +0000 @@ -81,6 +81,12 @@ ///To be able to iterate through each maps this function returns an iterator pointing to the first edgemap in the storage. std::map< std::string,Graph::EdgeMap * >::iterator beginOfEdgeMaps(){return edgemap_storage.begin();}; + ///To be able to iterate through each maps this function returns an iterator pointing to the last nodemap in the storage. + std::map< std::string,Graph::NodeMap * >::iterator endOfNodeMaps(){return nodemap_storage.end();}; + + ///To be able to iterate through each maps this function returns an iterator pointing to the last edgemap in the storage. + std::map< std::string,Graph::EdgeMap * >::iterator endOfEdgeMaps(){return edgemap_storage.end();}; + ///This function sets a default base value for the newly created node void initMapsForNode(NodeIt);