mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-11 16:13:53 +00:00
34 lines
853 B
C++
34 lines
853 B
C++
// Identical to classh_module_local_2.cpp, except 2 replaced with 1.
|
|
#include <pybind11/classh.h>
|
|
|
|
#include <string>
|
|
|
|
namespace pybind11_tests {
|
|
namespace classh_module_local {
|
|
|
|
struct atyp { // Short for "any type".
|
|
std::string mtxt;
|
|
};
|
|
|
|
std::string get_mtxt(const atyp &obj) { return obj.mtxt; }
|
|
|
|
} // namespace classh_module_local
|
|
} // namespace pybind11_tests
|
|
|
|
PYBIND11_CLASSH_TYPE_CASTERS(pybind11_tests::classh_module_local::atyp)
|
|
|
|
PYBIND11_MODULE(classh_module_local_1, m) {
|
|
namespace py = pybind11;
|
|
using namespace pybind11_tests::classh_module_local;
|
|
|
|
py::classh<atyp>(m, "atyp", py::module_local())
|
|
.def(py::init([](const std::string &mtxt) {
|
|
atyp obj;
|
|
obj.mtxt = mtxt;
|
|
return obj;
|
|
}))
|
|
.def("tag", [](const atyp &) { return 1; });
|
|
|
|
m.def("get_mtxt", get_mtxt);
|
|
}
|