pybind11_tests.h 250 Bytes
Newer Older
1
#pragma once
2
#include <pybind11/pybind11.h>
3
4
#include <functional>
#include <list>
Wenzel Jakob's avatar
Wenzel Jakob committed
5

6
namespace py = pybind11;
7
using namespace pybind11::literals;
8
9
10
11
12

class test_initializer {
public:
    test_initializer(std::function<void(py::module &)> initializer);
};