blob: c11b687b2c4de017e9d4a7e7d74aa796e9a976ba [file] [log] [blame]
#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);
};