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

Boost.python Custom Converter

I have a class taking a vector as parameter (a binary file content). I would like to convert python… Read more Boost.python Custom Converter

Boost.python And Boost.function

I want to wrap a boost::function class member so that it can be used in the following way: using na… Read more Boost.python And Boost.function

How Iterate (key, Value) Boost::python:dict

How can I iterate in C++ over my boost::python:dict ? I need key and value in every loop round. My… Read more How Iterate (key, Value) Boost::python:dict

Swig And Boost::variant

I'm in the middle of trying to wrap a c++ project into a python api using SWIG and I'm runn… Read more Swig And Boost::variant

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

How Do I Catch An Interrupt Signal In Python When Inside A Blocking Boost C++ Method?

I have a toolset which has been written in C++, and given Boost bindings for Python. Initially, thi… Read more How Do I Catch An Interrupt Signal In Python When Inside A Blocking Boost C++ Method?

Run Python In C++

I have an application written in C++ and a testing system (also in C++). Testing system is pretty c… Read more Run Python In C++

How Can I Declare A Boost.python C++ Class With Pyobjects

i want to write a c++ class with PyObjects to access them from Python to reference them with an exi… Read more How Can I Declare A Boost.python C++ Class With Pyobjects