summaryrefslogtreecommitdiff
path: root/ext/pybind11/tests/pybind11_tests.h
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pybind11/tests/pybind11_tests.h')
-rw-r--r--ext/pybind11/tests/pybind11_tests.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/ext/pybind11/tests/pybind11_tests.h b/ext/pybind11/tests/pybind11_tests.h
new file mode 100644
index 000000000..c11b687b2
--- /dev/null
+++ b/ext/pybind11/tests/pybind11_tests.h
@@ -0,0 +1,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);
+};