COIN-OR::LEMON - Graph Library

Changeset 2132:783b1d583be3 in lemon-0.x for lemon/concept/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/concept/graph.h

    r2128 r2132  
    4646    /// \sa concept
    4747    class Graph {
     48    private:
     49      ///Graphs are \e not copy constructible. Use GraphCopy() instead.
     50     
     51      ///Graphs are \e not copy constructible. Use GraphCopy() instead.
     52      ///
     53      ListGraph(const ListGraph &) :ExtendedListGraphBase() {};
     54      ///\brief Assignment of \ref Graph "Graph"s to another ones are
     55      ///\e not allowed. Use GraphCopy() instead.
     56     
     57      ///Assignment of \ref Graph "Graph"s to another ones are
     58      ///\e not allowed.  Use GraphCopy() instead.
     59
     60      void operator=(const ListGraph &) {}
    4861    public:
    4962      ///\e
Note: See TracChangeset for help on using the changeset viewer.