source:
lemon-0.x/src/work/deba/slowgraph.h
@
320:190ecba15b33
Last change on this file since 320:190ecba15b33 was 261:796101caedb7, checked in by , 21 years ago | |
---|---|
File size: 262 bytes |
Rev | Line | |
---|---|---|
[261] | 1 | #ifndef SLOWGRAPH_H |
2 | #define SLOWGRAPH_H | |
3 | ||
4 | class SlowGraphBase { | |
5 | private: | |
6 | typedef vector<int> EdgeVector; | |
7 | typedef vector<EdgeVector> NodeVector; | |
8 | ||
9 | NodeVector in_nodes, out_nodes; | |
10 | ||
11 | public: | |
12 | typedef Edge | |
13 | }; | |
14 | ||
15 | typedef MappedGraph<SlowGraphBase> SlowGraph; | |
16 | ||
17 | #endif |
Note: See TracBrowser
for help on using the repository browser.