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