Skip to content Skip to sidebar Skip to footer
Showing posts with the label Boost Python

How To Wrap Functions Overloaded By Type?

Suppose there is a class MyArray which implements an array of SomeType. It is written in C++ and wr… Read more How To Wrap Functions Overloaded By Type?

Error Compiling Boost.python Quickstart

I've been trying to compile the Boost.Python 'quickstart' ($BOOST_PATH\libs\python\exam… Read more Error Compiling Boost.python Quickstart

Importerror: /usr/lib/libboost_python.so.1.54.0: Undefined Symbol: Pyclass_type

I have code written in C++: #include char const* greet() { return 'Yay!'; } BOOST_PYTH… Read more Importerror: /usr/lib/libboost_python.so.1.54.0: Undefined Symbol: Pyclass_type

Pass A Type Object (class, Not An Instance) From Python To C++

I would like to have a boost::python-wrapped c++ function which is able to receive type (rather tha… Read more Pass A Type Object (class, Not An Instance) From Python To C++

Boost Python Return Same Instance With Make_constructor

I'm trying to make so this code returns the same instance in both the init function and the cal… Read more Boost Python Return Same Instance With Make_constructor

Adding Python Script To C++ Project

How would I go about adding a script written in python to a c++ project? Thanks Edit: Basically all… Read more Adding Python Script To C++ Project

Crash On Call From Boost::python::exec( Anything )

I'm trying to implement some Python stuff into my program and I've decided to use Boost::Py… Read more Crash On Call From Boost::python::exec( Anything )

How To Solve __imp___py_nonestruct Error In Boost.python?

I am trying to link C++ and Python with Boost.Python. I have Visual Studio 2012 Express Version, Py… Read more How To Solve __imp___py_nonestruct Error In Boost.python?