COIN-OR::LEMON - Graph Library

Changeset 31:66e85f44a66f in glemon-0.x for mapstorage.h


Ignore:
Timestamp:
06/29/05 21:44:30 (19 years ago)
Author:
Hegyi Péter
Branch:
gui
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk/gui@2011
Message:

Uh, long comment arrives... Zoom update does not happen after editorial steps. Nodes initial color is light blue, if there is any item under them. Strange node-text relations disappeared. Initial values of new items are given now in a more common way. The wood-cutter way of handling default values of properties is now changed.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • mapstorage.h

    r30 r31  
    8282  std::map< std::string,Graph::EdgeMap<double> * >::iterator beginOfEdgeMaps(){return edgemap_storage.begin();};
    8383
     84  ///To be able to iterate through each maps this function returns an iterator pointing to the last nodemap in the storage.
     85  std::map< std::string,Graph::NodeMap<double> * >::iterator endOfNodeMaps(){return nodemap_storage.end();};
     86
     87  ///To be able to iterate through each maps this function returns an iterator pointing to the last edgemap in the storage.
     88  std::map< std::string,Graph::EdgeMap<double> * >::iterator endOfEdgeMaps(){return edgemap_storage.end();};
     89
    8490  ///This function sets a default base value for the newly created node
    8591  void initMapsForNode(NodeIt);
Note: See TracChangeset for help on using the changeset viewer.