Hello,
I am new in this list. I would like to ask a quesiton about the linkage
between BOOST and Python. I want to use C++ to trigger a Python code so that
when I change anything inside Python, my C++ can know the changes and get the
result back.
So how can I pass an object from C++ to Python? and return the result?
Here is the code that embedded the Class.
class CppClass {
public:
int getNum() {
return 7;
}
};
#include
participants (1)
-
alex@gorex.com.hk