This commit is contained in:
Erik Fröjdh
2024-10-28 12:25:47 +01:00
parent a4fb217e3f
commit abb1d20ca3
8 changed files with 284 additions and 2 deletions

View File

@@ -1,9 +1,14 @@
#include "file.hpp"
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>
namespace py = pybind11;
PYBIND11_MODULE(_aare, m) {
define_file_io_bindings(m);
}