DUNE-DAQ
DUNE Trigger and Data Acquisition software
Loading...
Searching...
No Matches
module.cpp
Go to the documentation of this file.
1
9#include <pybind11/pybind11.h>
10#include <pybind11/stl.h>
11
12namespace py = pybind11;
13
14namespace dunedaq {
15namespace hdf5libs {
16namespace python {
17
18extern void
19register_hdf5rawdatafile(py::module&);
20
21PYBIND11_MODULE(_daq_hdf5libs_py, m)
22{
23
24 m.doc() = "c++ implementation of the dunedaq hdf5libs modules"; // optional module docstring
25
27}
28
29} // namespace python
30} // namespace hdf5libs
31} // namespace dunedaq
void register_hdf5rawdatafile(py::module &m)
PYBIND11_MODULE(_daq_hdf5libs_py, m)
Definition module.cpp:21
Including Qt Headers.