Changeset 639:a11a4377a816 in lemon-0.x for src/hugo
- Timestamp:
- 05/14/04 17:19:18 (21 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@837
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/hugo/for_each_macros.h
r638 r639 18 18 /// \code 19 19 /// Graph g; 20 /// ... 20 21 /// Graph::NodeIt n; 21 22 /// FOR_EACH_GLOB(n, g) { … … 34 35 /// \code 35 36 /// Graph g; 37 /// ... 36 38 /// Graph::Node v; 37 39 /// Graph::OutEdgeIt e; … … 41 43 /// typedef BipartiteGraph<Graph> BGraph; 42 44 /// BGraph h; 45 /// ... 43 46 /// BGraph::ClassNodeIt n; 44 47 /// FOR_EACH_INC_GLOB(BGraph::ClassNodeIt, n, h, h.S_CLASS) { … … 121 124 /// \code 122 125 /// Graph g; 126 /// ... 123 127 /// FOR_EACH_LOC(Graph::NodeIt, n, g) { 124 128 /// ... … … 135 139 /// \code 136 140 /// Graph g; 141 /// ... 137 142 /// Graph::Node v; 138 143 /// FOR_EACH_INC_LOC(Graph::OutEdgeIt, e, g, v) { … … 141 146 /// typedef BipartiteGraph<Graph> BGraph; 142 147 /// BGraph h; 148 /// ... 143 149 /// FOR_EACH_INC_LOC(BGraph::ClassNodeIt, n, h, h.S_CLASS) { 144 150 /// ...
Note: See TracChangeset
for help on using the changeset viewer.