Changeset 1157:0898f3371d1d in lemon-main
- Timestamp:
- 01/27/17 20:35:13 (8 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/static_graph.h
r1124 r1157 30 30 31 31 class StaticDigraphBase { 32 32 33 public: 33 34 … … 297 298 /// \sa concepts::Digraph 298 299 class StaticDigraph : public ExtendedStaticDigraphBase { 300 301 private: 302 /// Graphs are \e not copy constructible. Use DigraphCopy instead. 303 StaticDigraph(const StaticDigraph &) : ExtendedStaticDigraphBase() {}; 304 /// \brief Assignment of a graph to another one is \e not allowed. 305 /// Use DigraphCopy instead. 306 void operator=(const StaticDigraph&) {} 307 299 308 public: 300 309
Note: See TracChangeset
for help on using the changeset viewer.