equal
deleted
inserted
replaced
1 // -*- c++ -*- |
1 // -*- c++ -*- |
2 #ifndef HUGO_GRAPH_WRAPPER_H |
2 #ifndef LEMON_GRAPH_WRAPPER_H |
3 #define HUGO_GRAPH_WRAPPER_H |
3 #define LEMON_GRAPH_WRAPPER_H |
4 |
4 |
5 #include <invalid.h> |
5 #include <invalid.h> |
6 |
6 |
7 namespace hugo { |
7 namespace lemon { |
8 |
8 |
9 template<typename Graph> |
9 template<typename Graph> |
10 class TrivGraphWrapper { |
10 class TrivGraphWrapper { |
11 protected: |
11 protected: |
12 Graph* graph; |
12 Graph* graph; |
1699 |
1699 |
1700 // //ResGraphWrapper() : graph(0) { } |
1700 // //ResGraphWrapper() : graph(0) { } |
1701 // ResGraphWrapper(Graph& _graph) : graph(&_graph) { } |
1701 // ResGraphWrapper(Graph& _graph) : graph(&_graph) { } |
1702 // }; |
1702 // }; |
1703 |
1703 |
1704 } //namespace hugo |
1704 } //namespace lemon |
1705 |
1705 |
1706 #endif //HUGO_GRAPH_WRAPPER_H |
1706 #endif //LEMON_GRAPH_WRAPPER_H |
1707 |
1707 |