Changeset 1760:f18e8ca73a8f in lemon-0.x
- Timestamp:
- 11/04/05 13:01:40 (19 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2292
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/concept/graph.h
r1643 r1760 35 35 36 36 37 // /\brief Modular static graph class.38 // /39 // /It should be the same as the \c StaticGraph class.37 // \brief Modular static graph class. 38 // 39 // It should be the same as the \c StaticGraph class. 40 40 class _StaticGraph 41 41 : virtual public BaseGraphComponent, 42 42 public IterableGraphComponent, public MappableGraphComponent { 43 43 public: 44 ///\e 45 46 ///\todo undocumented 47 /// 44 48 45 typedef False UndirTag; 49 46 … … 60 57 }; 61 58 62 // /\brief Modular extendable graph class.63 // /64 // /It should be the same as the \c ExtendableGraph class.59 // \brief Modular extendable graph class. 60 // 61 // It should be the same as the \c ExtendableGraph class. 65 62 class _ExtendableGraph 66 63 : virtual public BaseGraphComponent, public _StaticGraph, … … 80 77 }; 81 78 82 // /\brief Modular erasable graph class.83 // /84 // /It should be the same as the \c ErasableGraph class.79 // \brief Modular erasable graph class. 80 // 81 // It should be the same as the \c ErasableGraph class. 85 82 class _ErasableGraph 86 83 : virtual public BaseGraphComponent, public _ExtendableGraph,
Note: See TracChangeset
for help on using the changeset viewer.