pybind11/tests/pybind11_tests.h

13 lines
250 B
C
Raw Normal View History

#pragma once
#include <pybind11/pybind11.h>
#include <functional>
#include <list>
2015-07-05 18:05:44 +00:00
namespace py = pybind11;
using namespace pybind11::literals;
class test_initializer {
public:
test_initializer(std::function<void(py::module &)> initializer);
};