src/work/marci/graph_concept.h
changeset 987 87f7c54892df
parent 986 e997802b855c
     1.1 --- a/src/work/marci/graph_concept.h	Sat Nov 13 12:53:28 2004 +0000
     1.2 +++ b/src/work/marci/graph_concept.h	Sat Nov 13 17:07:10 2004 +0000
     1.3 @@ -167,8 +167,8 @@
     1.4      template<class T> class NodeMap
     1.5      {
     1.6      public:
     1.7 -      typedef T ValueType;
     1.8 -      typedef Node KeyType;
     1.9 +      typedef T Value;
    1.10 +      typedef Node Key;
    1.11  
    1.12        NodeMap(const GraphConcept& g) { }
    1.13        NodeMap(const GraphConcept& g, T t) { }
    1.14 @@ -205,8 +205,8 @@
    1.15      template<class T> class EdgeMap
    1.16      {
    1.17      public:
    1.18 -      typedef T ValueType;
    1.19 -      typedef Edge KeyType;
    1.20 +      typedef T Value;
    1.21 +      typedef Edge Key;
    1.22  
    1.23        EdgeMap(const GraphConcept& g) {}
    1.24        EdgeMap(const GraphConcept& g, T t) {}