00001 // "display_best_route.h" 00002 00003 // (c) OPAC Team, LIFL, January 2006 00004 00005 /* 00006 Contact: paradiseo-help@lists.gforge.inria.fr 00007 */ 00008 00009 #ifndef __display_best_route_h 00010 #define __display_best_route_h 00011 00012 #include <utils/eoUpdater.h> 00013 00014 #include <eoPop.h> 00015 00016 #include "route.h" 00017 00018 class DisplayBestRoute : public eoUpdater { 00019 00020 public : 00021 00022 DisplayBestRoute (eoPop <Route> & __pop); 00023 00024 void operator () (); 00025 00026 private : 00027 00028 eoPop <Route> & pop; 00029 00030 }; 00031 00032 #endif
1.4.7