keyword argument support, removed last traces of std::function<> usage

This commit is contained in:
Wenzel Jakob
2015-07-29 17:51:54 +02:00
parent 71867830f5
commit a576e6a8ca
22 changed files with 253 additions and 115 deletions

View File

@@ -19,6 +19,7 @@ void init_ex7(py::module &);
void init_ex8(py::module &);
void init_ex9(py::module &);
void init_ex10(py::module &);
void init_ex11(py::module &);
PYTHON_PLUGIN(example) {
py::module m("example", "pybind example plugin");
@@ -33,6 +34,7 @@ PYTHON_PLUGIN(example) {
init_ex8(m);
init_ex9(m);
init_ex10(m);
init_ex11(m);
return m.ptr();
}