Changeset 2132:783b1d583be3 in lemon-0.x
- Timestamp:
- 07/12/06 13:05:00 (19 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2846
- Location:
- lemon
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/concept/graph.h
r2128 r2132 46 46 /// \sa concept 47 47 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 &) {} 48 61 public: 49 62 ///\e -
lemon/list_graph.h
r2128 r2132 332 332 /// 333 333 ListGraph(const ListGraph &) :ExtendedListGraphBase() {}; 334 ///\brief Assignment of ListGraph to another is \e not allowed.334 ///\brief Assignment of ListGraph to another one is \e not allowed. 335 335 ///Use GraphCopy() instead. 336 336 337 ///Assignment of ListGraph to another is \e not allowed.337 ///Assignment of ListGraph to another one is \e not allowed. 338 338 ///Use GraphCopy() instead. 339 339 void operator=(const ListGraph &) {} … … 761 761 /// 762 762 ListUGraph(const ListUGraph &) :ExtendedListUGraphBase() {}; 763 ///\brief Assignment of ListUGraph to another is \e not allowed.763 ///\brief Assignment of ListUGraph to another one is \e not allowed. 764 764 ///Use UGraphCopy() instead. 765 765 766 ///Assignment of ListUGraph to another is \e not allowed.766 ///Assignment of ListUGraph to another one is \e not allowed. 767 767 ///Use UGraphCopy() instead. 768 768 void operator=(const ListUGraph &) {} -
lemon/smart_graph.h
r2128 r2132 243 243 /// 244 244 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. 246 246 ///Use GraphCopy() instead. 247 247 248 ///Assignment of SmartGraph to another is \e not allowed.248 ///Assignment of SmartGraph to another one is \e not allowed. 249 249 ///Use GraphCopy() instead. 250 250 void operator=(const SmartGraph &) {} … … 330 330 ///\note After you restore a state, you cannot restore 331 331 ///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. 333 333 /// 334 334 class Snapshot … … 413 413 /// 414 414 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. 416 416 ///Use UGraphCopy() instead. 417 417 418 ///Assignment of SmartUGraph to another is \e not allowed.418 ///Assignment of SmartUGraph to another one is \e not allowed. 419 419 ///Use UGraphCopy() instead. 420 420 void operator=(const SmartUGraph &) {}
Note: See TracChangeset
for help on using the changeset viewer.