How do I do this ?
FFPython ffpython;
ffpython.regClass<Foo(int)>("Foo")
.regMethod(&Foo::getValue, "getValue")
.regMethod(&Foo::setValue, "setValue")
.regMethod(&Foo::testStl, "testStl")
.regField(&Foo::nValue, "nValue");
Then I want to call from C++
int rv = ffpython.call????<int>("module_name", "getValue");
ffpython.call????<int>("module_name", "setValue", 55);
Thank you