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; |
1340 |
1340 |
1341 // //ResGraphWrapper() : graph(0) { } |
1341 // //ResGraphWrapper() : graph(0) { } |
1342 // ResGraphWrapper(Graph& _graph) : graph(&_graph) { } |
1342 // ResGraphWrapper(Graph& _graph) : graph(&_graph) { } |
1343 // }; |
1343 // }; |
1344 |
1344 |
1345 } //namespace hugo |
1345 } //namespace lemon |
1346 |
1346 |
1347 #endif //HUGO_GRAPH_WRAPPER_H |
1347 #endif //LEMON_GRAPH_WRAPPER_H |
1348 |
1348 |