pybind11/example/example.cpp

63 lines
1.3 KiB
C++
Raw Normal View History

2015-07-05 18:05:44 +00:00
/*
example/example.cpp -- pybind example plugin
Copyright (c) 2016 Wenzel Jakob <wenzel.jakob@epfl.ch>
2015-07-05 18:05:44 +00:00
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
*/
#include "example.h"
void init_ex1(py::module &);
void init_ex2(py::module &);
void init_ex3(py::module &);
void init_ex4(py::module &);
void init_ex5(py::module &);
void init_ex6(py::module &);
void init_ex7(py::module &);
void init_ex8(py::module &);
void init_ex9(py::module &);
2015-07-26 14:33:49 +00:00
void init_ex10(py::module &);
void init_ex11(py::module &);
void init_ex12(py::module &);
void init_ex13(py::module &);
2016-03-15 14:05:40 +00:00
void init_ex14(py::module &);
2016-04-13 00:37:36 +00:00
void init_ex15(py::module &);
void init_ex16(py::module &);
2016-05-07 04:26:19 +00:00
void init_ex17(py::module &);
void init_issues(py::module &);
2015-07-05 18:05:44 +00:00
#if defined(PYBIND11_TEST_EIGEN)
void init_eigen(py::module &);
#endif
PYBIND11_PLUGIN(example) {
2015-07-05 18:05:44 +00:00
py::module m("example", "pybind example plugin");
init_ex1(m);
init_ex2(m);
init_ex3(m);
init_ex4(m);
init_ex5(m);
init_ex6(m);
init_ex7(m);
init_ex8(m);
init_ex9(m);
2015-07-26 14:33:49 +00:00
init_ex10(m);
init_ex11(m);
init_ex12(m);
init_ex13(m);
2016-03-15 14:05:40 +00:00
init_ex14(m);
2016-04-13 00:37:36 +00:00
init_ex15(m);
init_ex16(m);
2016-05-07 04:26:19 +00:00
init_ex17(m);
init_issues(m);
2015-07-05 18:05:44 +00:00
#if defined(PYBIND11_TEST_EIGEN)
init_eigen(m);
#endif
2015-07-05 18:05:44 +00:00
return m.ptr();
}