Changeset 1935:67b38d699ea7 in lemon-0.x
- Timestamp:
- 01/31/06 21:16:53 (17 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2510
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/graph_reader.h
r1909 r1935 317 317 /// 318 318 /// It reads an label from the stream and gives back which node belongs to 319 /// it. It is possible only if there was read a n"label" named node map.319 /// it. It is possible only if there was read a "label" named node map. 320 320 void readLabel(std::istream& is, Node& node) const { 321 321 nodeset_reader.readLabel(is, node); … … 325 325 /// 326 326 /// It reads an label from the stream and gives back which edge belongs to 327 /// it. It is possible only if there was read a n"label" named edge map.327 /// it. It is possible only if there was read a "label" named edge map. 328 328 void readLabel(std::istream& is, Edge& edge) const { 329 329 return edgeset_reader.readLabel(is, edge); … … 723 723 /// 724 724 /// It reads an label from the stream and gives back which node belongs to 725 /// it. It is possible only if there was read a n"label" named node map.725 /// it. It is possible only if there was read a "label" named node map. 726 726 void readLabel(std::istream& is, Node& node) const { 727 727 return nodeset_reader.readLabel(is, node); 728 728 } 729 729 730 /// \brief Gives back the edge by its label .730 /// \brief Gives back the edge by its label 731 731 /// 732 732 /// It reads an label from the stream and gives back which edge belongs to 733 /// it. It is possible only if there was read a n"label" named edge map.733 /// it. It is possible only if there was read a "label" named edge map. 734 734 void readLabel(std::istream& is, Edge& edge) const { 735 735 return u_edgeset_reader.readLabel(is, edge); … … 739 739 /// 740 740 /// It reads an label from the stream and gives back which undirected edge 741 /// belongs to it. It is possible only if there was read a n"label" named741 /// belongs to it. It is possible only if there was read a "label" named 742 742 /// edge map. 743 743 void readLabel(std::istream& is, UEdge& uedge) const {
Note: See TracChangeset
for help on using the changeset viewer.