Line data Source code
1 : /**
2 : * @file module.cpp
3 : *
4 : * This is part of the DUNE DAQ Software Suite, copyright 2020.
5 : * Licensing/copyright details are in the COPYING file that you should have
6 : * received with this code.
7 : */
8 :
9 : #include <pybind11/pybind11.h>
10 : #include <pybind11/stl.h>
11 :
12 : namespace py = pybind11;
13 :
14 : namespace dunedaq {
15 : namespace hdf5libs {
16 : namespace python {
17 :
18 : extern void
19 : register_hdf5rawdatafile(py::module&);
20 :
21 0 : PYBIND11_MODULE(_daq_hdf5libs_py, m)
22 : {
23 :
24 0 : m.doc() = "c++ implementation of the dunedaq hdf5libs modules"; // optional module docstring
25 :
26 0 : register_hdf5rawdatafile(m);
27 0 : }
28 :
29 : } // namespace python
30 : } // namespace hdf5libs
31 : } // namespace dunedaq
|