equal
deleted
inserted
replaced
32 /**************** Graph iterator concepts ****************/ |
32 /**************** Graph iterator concepts ****************/ |
33 |
33 |
34 /// Skeleton class for graph Node and Edge |
34 /// Skeleton class for graph Node and Edge |
35 |
35 |
36 /// \note Because Node and Edge are forbidden to inherit from the same |
36 /// \note Because Node and Edge are forbidden to inherit from the same |
37 /// base class, this is a template. For Node you shoul instantiate it |
37 /// base class, this is a template. For Node you should instantiate it |
38 /// with character 'n' and for Edge with 'e'. |
38 /// with character 'n' and for Edge with 'e'. |
39 |
39 |
40 template<char Ch> |
40 template<char Ch> |
41 class GraphItem { |
41 class GraphItem { |
42 public: |
42 public: |