git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@512 331e1502-861f-0410-8da2-ba01fb791d7f
28 lines
412 B
C++
28 lines
412 B
C++
// -*- mode: c++; c-indent-level: 4; c++-member-init-indent: 8; comment-column: 35; -*-
|
|
|
|
// "route_init.h"
|
|
|
|
// (c) OPAC Team, LIFL, 2002-2006
|
|
|
|
/* LICENCE TEXT
|
|
|
|
Contact: paradiseo-help@lists.gforge.inria.fr
|
|
*/
|
|
|
|
#ifndef route_init_h
|
|
#define route_init_h
|
|
|
|
#include <eoInit.h>
|
|
|
|
#include "route.h"
|
|
|
|
class RouteInit : public eoInit <Route>
|
|
{
|
|
|
|
public :
|
|
|
|
void operator () (Route & __route) ;
|
|
|
|
} ;
|
|
|
|
#endif
|