src/work/deba/slowgraph.h
author deba
Mon, 29 Mar 2004 21:43:27 +0000
changeset 262 60de0f16a4a1
permissions -rw-r--r--
(none)
     1 #ifndef SLOWGRAPH_H
     2 #define SLOWGRAPH_H
     3 
     4 class SlowGraphBase {
     5 private:
     6 	typedef vector<int> EdgeVector;
     7   typedef vector<EdgeVector> NodeVector;
     8 	
     9   NodeVector in_nodes, out_nodes;
    10 
    11 public:
    12 	typedef Edge
    13 };
    14 
    15 typedef MappedGraph<SlowGraphBase> SlowGraph;
    16 
    17 #endif