00001 // -*- mode: c++; c-indent-level: 4; c++-member-init-indent: 8; comment-column: 35; -*- 00002 00003 // "part_route_eval.h" 00004 00005 // (c) OPAC Team, LIFL, 2003-2006 00006 00007 /* LICENCE TEXT 00008 00009 Contact: paradiseo-help@lists.gforge.inria.fr 00010 */ 00011 00012 #ifndef part_route_eval_h 00013 #define part_route_eval_h 00014 00015 #include <eoEvalFunc.h> 00016 00017 #include "route.h" 00018 00020 class PartRouteEval : public eoEvalFunc <Route> 00021 { 00022 00023 public : 00024 00026 PartRouteEval (float __from, float __to) ; 00027 00028 void operator () (Route & __route) ; 00029 00030 private : 00031 00032 float from, to ; 00033 00034 } ; 00035 00036 00037 #endif
1.5.2