COIN-OR::LEMON - Graph Library

Changeset 2132:783b1d583be3 in lemon-0.x for lemon/smart_graph.h


Ignore:
Timestamp:
07/12/06 13:05:00 (18 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2846
Message:

(Hopefully) finish privatizing the copy constr. and operator= in
the graph concept, ListGraph? and SmartGraph?.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/smart_graph.h

    r2128 r2132  
    243243    ///
    244244    SmartGraph(const SmartGraph &) :ExtendedSmartGraphBase() {};
    245     ///\brief Assignment of SmartGraph to another is \e not allowed.
     245    ///\brief Assignment of SmartGraph to another one is \e not allowed.
    246246    ///Use GraphCopy() instead.
    247247
    248     ///Assignment of SmartGraph to another is \e not allowed.
     248    ///Assignment of SmartGraph to another one is \e not allowed.
    249249    ///Use GraphCopy() instead.
    250250    void operator=(const SmartGraph &) {}
     
    330330    ///\note After you restore a state, you cannot restore
    331331    ///a later state, in other word you cannot add again the edges deleted
    332     ///by restore() using another Snapshot instance.
     332    ///by restore() using another one Snapshot instance.
    333333    ///
    334334    class Snapshot
     
    413413    ///
    414414    SmartUGraph(const SmartUGraph &) : ExtendedSmartUGraphBase() {};
    415     ///\brief Assignment of SmartUGraph to another is \e not allowed.
     415    ///\brief Assignment of SmartUGraph to another one is \e not allowed.
    416416    ///Use UGraphCopy() instead.
    417417
    418     ///Assignment of SmartUGraph to another is \e not allowed.
     418    ///Assignment of SmartUGraph to another one is \e not allowed.
    419419    ///Use UGraphCopy() instead.
    420420    void operator=(const SmartUGraph &) {}
Note: See TracChangeset for help on using the changeset viewer.