src/lemon/concept/graph.h
changeset 987 87f7c54892df
parent 986 e997802b855c
child 989 ca95f8b5c931
     1.1 --- a/src/lemon/concept/graph.h	Sat Nov 13 12:53:28 2004 +0000
     1.2 +++ b/src/lemon/concept/graph.h	Sat Nov 13 17:07:10 2004 +0000
     1.3 @@ -567,9 +567,9 @@
     1.4  // 	em=cm; //Copy to more complex type
     1.5  // 	{
     1.6  // 	  //Check the typedef's
     1.7 -// 	  typename Graph::template NodeMap<int>::ValueType val;
     1.8 +// 	  typename Graph::template NodeMap<int>::Value val;
     1.9  // 	  val=1;
    1.10 -// 	  typename Graph::template NodeMap<int>::KeyType key;
    1.11 +// 	  typename Graph::template NodeMap<int>::Key key;
    1.12  // 	  key = typename Graph::NodeIt(G);
    1.13  // 	}
    1.14  //       }  
    1.15 @@ -591,9 +591,9 @@
    1.16  
    1.17  // 	{
    1.18  // 	  //Check the typedef's
    1.19 -// 	  typename Graph::template NodeMap<bool>::ValueType val;
    1.20 +// 	  typename Graph::template NodeMap<bool>::Value val;
    1.21  // 	  val=true;
    1.22 -// 	  typename Graph::template NodeMap<bool>::KeyType key;
    1.23 +// 	  typename Graph::template NodeMap<bool>::Key key;
    1.24  // 	  key= typename Graph::NodeIt(G);
    1.25  // 	}
    1.26  //       }
    1.27 @@ -614,9 +614,9 @@
    1.28  // 	dm=cm; //Copy from another type
    1.29  // 	{
    1.30  // 	  //Check the typedef's
    1.31 -// 	  typename Graph::template EdgeMap<int>::ValueType val;
    1.32 +// 	  typename Graph::template EdgeMap<int>::Value val;
    1.33  // 	  val=1;
    1.34 -// 	  typename Graph::template EdgeMap<int>::KeyType key;
    1.35 +// 	  typename Graph::template EdgeMap<int>::Key key;
    1.36  // 	  key= typename Graph::EdgeIt(G);
    1.37  // 	}
    1.38  //       }  
    1.39 @@ -637,9 +637,9 @@
    1.40  // 	m=dm; //Copy to another type
    1.41  // 	{
    1.42  // 	  //Check the typedef's
    1.43 -// 	  typename Graph::template EdgeMap<bool>::ValueType val;
    1.44 +// 	  typename Graph::template EdgeMap<bool>::Value val;
    1.45  // 	  val=true;
    1.46 -// 	  typename Graph::template EdgeMap<bool>::KeyType key;
    1.47 +// 	  typename Graph::template EdgeMap<bool>::Key key;
    1.48  // 	  key= typename Graph::EdgeIt(G);
    1.49  // 	}
    1.50  //       }