Changeset 873:f3a30fda2e49 in lemon-0.x for src/hugo/skeletons
- Timestamp:
- 09/16/04 21:23:41 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1175
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/hugo/skeletons/graph.h
r826 r873 433 433 /// with additional functionality which enables to build a 434 434 /// graph from scratch. 435 class GraphSkeleton : public StaticGraphSkeleton435 class ExtendableGraphSkeleton : public StaticGraphSkeleton 436 436 { 437 437 public: … … 440 440 /// Defalult constructor. 441 441 /// 442 GraphSkeleton() { }442 ExtendableGraphSkeleton() { } 443 443 ///Add a new node to the graph. 444 444 … … 465 465 /// This class is an extension of \c GraphSkeleton. It also makes it 466 466 /// possible to erase edges or nodes. 467 class ErasableGraphSkeleton : public GraphSkeleton467 class ErasableGraphSkeleton : public ExtendableGraphSkeleton 468 468 { 469 469 public:
Note: See TracChangeset
for help on using the changeset viewer.