Lesson sources have updated to use configuration files

git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@958 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
jboisson 2008-02-15 13:03:11 +00:00
commit 01da681c6a
15 changed files with 305 additions and 79 deletions

View file

@ -41,14 +41,14 @@
#include <utility>
namespace Graph
{
void load (const char * __file_name) ;
{
void load (const char * _file_name) ;
/* Loading cities
(expressed by their coordinates)
from the given file name */
float distance (unsigned int __from, unsigned int __to) ;
float distance (unsigned int _from, unsigned int _to) ;
unsigned int size () ; // How many cities ?
}