source:
lemon-0.x/src/work/deba/main.cpp
@
591:eb532eef6170
Last change on this file since 591:eb532eef6170 was 571:9632ea8be6ca, checked in by , 21 years ago | |
---|---|
File size: 250 bytes |
Rev | Line | |
---|---|---|
[378] | 1 | #include <iostream> |
2 | #include "test_graph.h" | |
3 | ||
4 | using namespace std; | |
5 | using namespace hugo; | |
6 | ||
7 | ||
8 | int main() { | |
9 | ListGraph g; | |
[571] | 10 | ListGraph::NodeMapFactory::VectorMap<int> map(g, g.node_maps); |
[378] | 11 | ListGraph::Node node = g.addNode(); |
12 | map[node] = 12; | |
13 | return 0; | |
14 | } | |
15 |
Note: See TracBrowser
for help on using the repository browser.