diff -r 0508d63fcc96 -r 8d62f0072ff0 src/work/marci_property_vector.hh --- a/src/work/marci_property_vector.hh Fri Feb 20 21:57:39 2004 +0000 +++ b/src/work/marci_property_vector.hh Fri Feb 20 21:59:34 2004 +0000 @@ -3,7 +3,7 @@ #include -namespace marci { +namespace hugo { template int number_of(iterator _it) { @@ -14,8 +14,8 @@ template class node_property_vector { - typedef typename list_graph::node_iterator node_iterator; - typedef typename list_graph::each_node_iterator each_node_iterator; + typedef typename graph_type::node_iterator node_iterator; + typedef typename graph_type::each_node_iterator each_node_iterator; graph_type& G; std::vector container; public: @@ -52,6 +52,6 @@ T get(edge_iterator eit) { return container[G.id(eit)]; } }; -} // namespace marci +} // namespace hugo #endif //MARCI_PROPERTY_VECTOR_HH