Нужна помощь в начале работы с Boost.Python

я пытаюсь построить мой первый пример Boost.Python.

#include 
#include 

using namespace boost::python;


class Hello {

public:
    std::string greet() {
        std::cout < "Hello World" < std::endl;
    }
};


BOOST_PYTHON_MODULE(hello)
{
    class_

Ответы на вопрос(5)

Ваш ответ на вопрос