Changeset 515:a7eeb8af6b34 in lemon-0.x for src/include
- Timestamp:
- 05/03/04 19:06:38 (21 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@675
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/include/skeletons/graph.h
r503 r515 88 88 NodeIt(Invalid) {} 89 89 /// Sets the iterator to the first node of \c G. 90 NodeIt(const GraphSkeleton & G) {}90 NodeIt(const GraphSkeleton &) {} 91 91 /// @warning The default constructor sets the iterator 92 92 /// to an undefined value. … … 135 135 ///@param n the node 136 136 ///@param G the graph 137 OutEdgeIt(const GraphSkeleton & G, Node n) {}137 OutEdgeIt(const GraphSkeleton &, Node) {} 138 138 }; 139 139 … … 286 286 typedef Node KeyType; 287 287 288 NodeMap(const GraphSkeleton & G) {}289 NodeMap(const GraphSkeleton & G, T t) {}290 291 template<typename TT> NodeMap(const NodeMap<TT> & m) {}288 NodeMap(const GraphSkeleton &) {} 289 NodeMap(const GraphSkeleton &, T) {} 290 291 template<typename TT> NodeMap(const NodeMap<TT> &) {} 292 292 293 293 /// Sets the value of a node. … … 324 324 typedef Edge KeyType; 325 325 326 EdgeMap(const GraphSkeleton & G) {}327 EdgeMap(const GraphSkeleton & G, T t) {}326 EdgeMap(const GraphSkeleton &) {} 327 EdgeMap(const GraphSkeleton &, T ) {} 328 328 329 329 ///\todo It can copy between different types. 330 330 /// 331 template<typename TT> EdgeMap(const EdgeMap<TT> & m) {}331 template<typename TT> EdgeMap(const EdgeMap<TT> &) {} 332 332 333 333 void set(Edge, T) {}
Note: See TracChangeset
for help on using the changeset viewer.