* pyeo/PyEO.cpp: renamed module name

This commit is contained in:
Caner Candan 2011-05-05 16:53:31 +02:00
commit 8457e39efe

View file

@ -23,7 +23,6 @@
#include "PyEO.h" #include "PyEO.h"
#include <eoPop.h> #include <eoPop.h>
using namespace std; using namespace std;
//using namespace boost::python; //using namespace boost::python;
@ -163,7 +162,7 @@ extern void perf2worth();
extern void monitors(); extern void monitors();
extern void statistics(); extern void statistics();
BOOST_PYTHON_MODULE(PyEO) BOOST_PYTHON_MODULE(libPyEO)
{ {
using namespace boost::python; using namespace boost::python;
@ -225,7 +224,8 @@ BOOST_PYTHON_MODULE(PyEO)
// to avoid having to build with libeo.a // to avoid having to build with libeo.a
ostream & operator << ( ostream& _os, const eoPrintable& _o ) { ostream & operator << ( ostream& _os, const eoPrintable& _o )
{
_o.printOn(_os); _o.printOn(_os);
return _os; return _os;
}; };