src/work/deba/slowgraph.h
author deba
Fri, 16 Apr 2004 13:42:03 +0000
changeset 340 a2ce3c4780b7
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