src/work/marci_property_vector.hh
changeset 107 8d62f0072ff0
parent 19 3151a1026db9
     1.1 --- a/src/work/marci_property_vector.hh	Fri Feb 20 21:57:39 2004 +0000
     1.2 +++ b/src/work/marci_property_vector.hh	Fri Feb 20 21:59:34 2004 +0000
     1.3 @@ -3,7 +3,7 @@
     1.4  
     1.5  #include <vector>
     1.6  
     1.7 -namespace marci {
     1.8 +namespace hugo {
     1.9  
    1.10    template <typename iterator>
    1.11    int number_of(iterator _it) { 
    1.12 @@ -14,8 +14,8 @@
    1.13    
    1.14    template <typename graph_type, typename T>
    1.15    class node_property_vector {
    1.16 -    typedef typename list_graph::node_iterator node_iterator;
    1.17 -    typedef typename list_graph::each_node_iterator each_node_iterator;
    1.18 +    typedef typename graph_type::node_iterator node_iterator;
    1.19 +    typedef typename graph_type::each_node_iterator each_node_iterator;
    1.20      graph_type& G; 
    1.21      std::vector<T> container;
    1.22    public:
    1.23 @@ -52,6 +52,6 @@
    1.24      T get(edge_iterator eit) { return container[G.id(eit)]; }
    1.25    };
    1.26  
    1.27 -} // namespace marci
    1.28 +} // namespace hugo
    1.29  
    1.30  #endif //MARCI_PROPERTY_VECTOR_HH