mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-11 08:03:55 +00:00
14 lines
352 B
C++
14 lines
352 B
C++
|
// Copyright (c) 2024 The pybind Community.
|
||
|
|
||
|
#include "test_cpp_conduit_traveler_bindings.h"
|
||
|
|
||
|
namespace pybind11_tests {
|
||
|
namespace test_cpp_conduit {
|
||
|
|
||
|
PYBIND11_MODULE(home_planet_very_lonely_traveler, m) {
|
||
|
m.def("wrap_very_lonely_traveler", [m]() { wrap_very_lonely_traveler(m); });
|
||
|
}
|
||
|
|
||
|
} // namespace test_cpp_conduit
|
||
|
} // namespace pybind11_tests
|