mapstorage.h
branchgui
changeset 31 66e85f44a66f
parent 30 f70bbee5350a
child 53 e73d7540bd24
     1.1 --- a/mapstorage.h	Wed Jun 29 15:41:33 2005 +0000
     1.2 +++ b/mapstorage.h	Wed Jun 29 19:44:30 2005 +0000
     1.3 @@ -81,6 +81,12 @@
     1.4    ///To be able to iterate through each maps this function returns an iterator pointing to the first edgemap in the storage.
     1.5    std::map< std::string,Graph::EdgeMap<double> * >::iterator beginOfEdgeMaps(){return edgemap_storage.begin();};
     1.6  
     1.7 +  ///To be able to iterate through each maps this function returns an iterator pointing to the last nodemap in the storage.
     1.8 +  std::map< std::string,Graph::NodeMap<double> * >::iterator endOfNodeMaps(){return nodemap_storage.end();};
     1.9 +
    1.10 +  ///To be able to iterate through each maps this function returns an iterator pointing to the last edgemap in the storage.
    1.11 +  std::map< std::string,Graph::EdgeMap<double> * >::iterator endOfEdgeMaps(){return edgemap_storage.end();};
    1.12 +
    1.13    ///This function sets a default base value for the newly created node
    1.14    void initMapsForNode(NodeIt);
    1.15