Changeset 53:cc5eb73a3a93 in lemon-0.x for src
- Timestamp:
- 02/03/04 13:42:54 (21 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@68
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/work/alpar/emptygraph.h
r52 r53 1 1 // -*-mode: c++; -*- 2 2 3 template <class N, class E>4 3 class Graph 5 4 { … … 55 54 void set(const NodeIt i, const T &t); 56 55 T get(const NodeIt i) const; 57 T operator[](const NodeIt i);56 T &operator[](const NodeIt i); 58 57 59 58 NodeMap(const Graph &G); … … 66 65 void set(const EdgeIt i, const T &t); 67 66 T get(const EdgeIt i) const; 68 T operator[](const EdgeIt i);67 T &operator[](const EdgeIt i); 69 68 70 69 EdgeMap(const Graph &G);
Note: See TracChangeset
for help on using the changeset viewer.