pybind11/tests/pybind11_tests.h

16 lines
269 B
C
Raw Normal View History

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