| author | alpar |
| Wed, 30 Jun 2004 14:59:46 +0000 | |
| changeset 689 | e7cf90de549a |
| child 690 | a0f95e1b17fc |
| permissions | -rw-r--r-- |
1 #include <string>
2 #include <iostream>
3 #include <stdio.h>
5 #include "hierarchygraph.h"
6 #include <hugo/list_graph.h>
7 #include <hugo/smart_graph.h>
8 #include <path.h>
10 using namespace hugo;
11 using namespace std;
13 bool passed = true;
15 void check(bool rc) {
16 passed = passed && rc;
17 if(!rc) {
18 cout << "Test failed!" << endl;
19 }
20 }
22 int main()
23 {
24 HierarchyGraph<SmartGraph, ListGraph> HGr;
25 }