* pyeo/PyEO.cpp: renamed module name
This commit is contained in:
parent
62157e28ee
commit
8457e39efe
1 changed files with 71 additions and 71 deletions
|
|
@ -23,7 +23,6 @@
|
|||
#include "PyEO.h"
|
||||
#include <eoPop.h>
|
||||
|
||||
|
||||
using namespace std;
|
||||
//using namespace boost::python;
|
||||
|
||||
|
|
@ -163,7 +162,7 @@ extern void perf2worth();
|
|||
extern void monitors();
|
||||
extern void statistics();
|
||||
|
||||
BOOST_PYTHON_MODULE(PyEO)
|
||||
BOOST_PYTHON_MODULE(libPyEO)
|
||||
{
|
||||
using namespace boost::python;
|
||||
|
||||
|
|
@ -225,7 +224,8 @@ BOOST_PYTHON_MODULE(PyEO)
|
|||
|
||||
|
||||
// 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);
|
||||
return _os;
|
||||
};
|
||||
|
|
|
|||
Reference in a new issue