Changeset 1278:4abea330614d in lemon-0.x for src/work
- Timestamp:
- 03/31/05 08:05:58 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1710
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/work/peter/xy-reader.cc
r1277 r1278 3 3 4 4 #include <lemon/xy.h> 5 #include <lemon/ concept/maps.h>5 #include <lemon/maps.h> 6 6 #include <lemon/error.h> 7 7 #include <lemon/list_graph.h> … … 16 16 typedef Graph::Node Node; 17 17 18 class CoordReaderMap: public concept::WriteMap<Node, double>18 class CoordReaderMap: public MapBase<Node, double> 19 19 { 20 20 CoordinatesMap * cm; … … 22 22 23 23 public: 24 CoordReaderMap(char xory, CoordinatesMap * coordmap): c oncept::WriteMap<Node, double>() ,cm(coordmap)24 CoordReaderMap(char xory, CoordinatesMap * coordmap): cm(coordmap) 25 25 { 26 26 switch(xory)
Note: See TracChangeset
for help on using the changeset viewer.