src/work/johanna/contract_wrapper.h
author alpar
Tue, 11 Jan 2005 09:15:25 +0000
changeset 1073 bedab8bd915f
parent 394 3a34c5626e52
permissions -rw-r--r--
graph_to_eps mission accomplished.
- lemon/graph_to_eps.h header created
- lemon/bezier.h: Tools to compute with bezier curves (unclean and undocumented
interface, used internally by graph_to_eps.h)
- demo/graph_to_eps_demo.cc: a simple demo for lemon/graph_to_eps.h
     1 // -*- C++ -*- //
     2 
     3 #ifndef LEMON_CONTRACT_WRAPPER
     4 #define LEMON_CONTRACT_WRAPPER
     5 
     6 #include <graph_wrapper.h>
     7 
     8 namespace lemon {
     9 
    10   template<typename Graph>
    11   class ConractWrapper : public GraphWrapper<const Graph> {
    12 
    13   public:
    14     typedef typename Parent::NodeMap NodeMap;
    15     class Node;
    16 
    17   private:
    18     typedef GraphWrapper<Graph> Parent;
    19     
    20 
    21     UnionFindEnum<Node, NodeMap> parts; 
    22  
    23   public:
    24 
    25     ConractWrapper(const Graph& _graph) : Parent(_graph) { }
    26 
    27 
    28 
    29 
    30 
    31   };
    32 
    33 
    34 
    35 }
    36 #endif