Removed generate from the Makefile.
[universe.git] / task.cc
diff --git a/task.cc b/task.cc
index 71002c3..99743b8 100644 (file)
--- a/task.cc
+++ b/task.cc
@@ -1,19 +1,6 @@
 
-////////////////////////////////////////////////////////////////////////////////
-// This program is free software; you can redistribute it and/or              //
-// modify it under the terms of the GNU General Public License                //
-// version 2 as published by the Free Software Foundation.                    //
-//                                                                            //
-// This program is distributed in the hope that it will be useful, but        //
-// WITHOUT ANY WARRANTY; without even the implied warranty of                 //
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU          //
-// General Public License for more details.                                   //
-//                                                                            //
-// Written and (C) by François Fleuret                                        //
-// Contact <francois.fleuret@epfl.ch> for comments & bug reports              //
-////////////////////////////////////////////////////////////////////////////////
-
-// $Id: task.cc,v 1.8 2006-07-10 15:19:06 fleuret Exp $
+// Written and (C) by Francois Fleuret
+// Contact <francois.fleuret@idiap.ch> for comments & bug reports
 
 #include <iostream>
 #include <dlfcn.h>
@@ -28,7 +15,7 @@ Task::~Task() { }
 
 typedef Task *TaskConstructor();
 
-Task *load_task(char *filename) {
+Task *load_task(const char *filename) {
   void *handle = dlopen(filename, RTLD_NOW | RTLD_GLOBAL);
 
   if(handle == 0) {