00001 // "route.h" 00002 00003 // (c) OPAC Team, LIFL, January 2006 00004 00005 /* 00006 Contact: paradiseo-help@lists.gforge.inria.fr 00007 */ 00008 00009 #ifndef __route_h 00010 #define __route_h 00011 00012 #include <eoVector.h> 00013 00014 #include "node.h" 00015 00016 typedef eoVector <int, Node> Route; 00017 00018 unsigned length (const Route & __route); 00019 00020 #endif
1.4.7