equal
deleted
inserted
replaced
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() {} |