ffpython icon indicating copy to clipboard operation
ffpython copied to clipboard

ffpython is a c++ lib,which is to simplify embedding python and extend python. For example, call python function, register c++ function to python, register c++ class to python, on one implement c++ he...

Results 1 ffpython issues
Sort by recently updated
recently updated
newest added

How do I do this ? ``` FFPython ffpython; ffpython.regClass("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 =...