You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
250 B

  1. #pragma once
  2. #include <pybind11/pybind11.h>
  3. #include <functional>
  4. #include <list>
  5. namespace py = pybind11;
  6. using namespace pybind11::literals;
  7. class test_initializer {
  8. public:
  9. test_initializer(std::function<void(py::module &)> initializer);
  10. };