Changeset 402:f90f65ba21d5 in lemon-0.x
- Timestamp:
- 04/26/04 00:28:19 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@533
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/include/smart_graph.h
r398 r402 24 24 ///the description of \ref GraphSkeleton. 25 25 ///\sa \ref GraphSkeleton. 26 /// 27 ///\todo Some member functions could be \c static. 26 28 class SmartGraph { 27 29 … … 201 203 friend class SmartGraph; 202 204 public: 205 NodeIt() : Node() { } 206 NodeIt(Invalid i) : Node(i) { } 203 207 NodeIt(const SmartGraph& G) : Node(G.nodes.size()?0:-1) { } 204 NodeIt() : Node() { }205 208 }; 206 209
Note: See TracChangeset
for help on using the changeset viewer.