src/work/list_graph.hh
changeset 102 294cb99af985
parent 92 a7f9e2fda93a
child 107 8d62f0072ff0
equal deleted inserted replaced
9:f0ee345e8d05 10:a9608f369198
   387     public:
   387     public:
   388       EachNodeIt() : NodeIt() { }
   388       EachNodeIt() : NodeIt() { }
   389       EachNodeIt(node_item* v) : NodeIt(v) { }
   389       EachNodeIt(node_item* v) : NodeIt(v) { }
   390       EachNodeIt& operator++() { node=node->_next_node; return *this; }
   390       EachNodeIt& operator++() { node=node->_next_node; return *this; }
   391       //FIXME::
   391       //FIXME::
   392       EachNodeIt& operator=(const NodeIt& e)
   392       //      EachNodeIt& operator=(const NodeIt& e)
   393       { node=e.node; return *this; }
   393       //      { node=e.node; return *this; }
   394     };
   394     };
   395 
   395 
   396     class EdgeIt {
   396     class EdgeIt {
   397       friend class ListGraph;
   397       friend class ListGraph;
   398       template <typename T> friend class EdgeMap;
   398       template <typename T> friend class EdgeMap;