Changeset 870:9bde6cd8e3da in lemon-0.x for src/hugo
- Timestamp:
- 09/16/04 17:05:10 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1170
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/hugo/graph_wrapper.h
r861 r870 230 230 NodeMap(const GraphWrapper<Graph>& gw) : Parent(*(gw.graph)) { } 231 231 NodeMap(const GraphWrapper<Graph>& gw, T a) : Parent(*(gw.graph), a) { } 232 //NodeMap(const NodeMap<T>& map) : Parent(map) { }233 //template<typename Map>234 //NodeMap(const Map& map) : Parent(map) { }232 NodeMap(const NodeMap<T>& map) : Parent(map) { } 233 template<typename Map> 234 NodeMap(const Map& map) : Parent(map) { } 235 235 }; 236 236 … … 240 240 EdgeMap(const GraphWrapper<Graph>& gw) : Parent(*(gw.graph)) { } 241 241 EdgeMap(const GraphWrapper<Graph>& gw, T a) : Parent(*(gw.graph), a) { } 242 //EdgeMap(const EdgeMap<T>& map) : Parent(map) { }243 //template<typename Map>244 //EdgeMap(const Map& map) : Parent(map) { }242 EdgeMap(const EdgeMap<T>& map) : Parent(map) { } 243 template<typename Map> 244 EdgeMap(const Map& map) : Parent(map) { } 245 245 }; 246 246 };
Note: See TracChangeset
for help on using the changeset viewer.