lemon/concepts/graph.h
changeset 1018 2e959a5a0c2d
parent 877 141f9c0db4a3
child 1049 7bf489cf624e
equal deleted inserted replaced
15:7bc74477a81d 16:29cbd940c9a9
    70     /// graph and the corresponding arcs are added or removed automatically.
    70     /// graph and the corresponding arcs are added or removed automatically.
    71     ///
    71     ///
    72     /// \sa Digraph
    72     /// \sa Digraph
    73     class Graph {
    73     class Graph {
    74     private:
    74     private:
    75       /// Graphs are \e not copy constructible. Use DigraphCopy instead.
    75       /// Graphs are \e not copy constructible. Use GraphCopy instead.
    76       Graph(const Graph&) {}
    76       Graph(const Graph&) {}
    77       /// \brief Assignment of a graph to another one is \e not allowed.
    77       /// \brief Assignment of a graph to another one is \e not allowed.
    78       /// Use DigraphCopy instead.
    78       /// Use GraphCopy instead.
    79       void operator=(const Graph&) {}
    79       void operator=(const Graph&) {}
    80 
    80 
    81     public:
    81     public:
    82       /// Default constructor.
    82       /// Default constructor.
    83       Graph() {}
    83       Graph() {}