00001 /* 00002 * All vector list 00003 * by hackervalley@free.fr 00004 * http://hackervalley.free.fr 00005 * May 2004 00006 * this program is licensed under the GPL. 00007 */ 00008 00009 #ifndef VECTOR_H 00010 #define VECTOR_H 00011 00012 #include "Vertex.hh" 00013 00014 #include <vector> 00015 #include <list> 00016 #include <algorithm> 00017 00018 using namespace std; 00019 00020 namespace FE 00021 { 00022 /* Use of list container to have valid iterator */ 00023 list < Vertex <> *>VertexSet; 00024 list < Vertex <> *>::iterator VertexSetIterator; 00025 } 00026 00027 #endif