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 "registrators.hpp"
10 :
11 : #include <pybind11/pybind11.h>
12 : #include <pybind11/stl.h>
13 :
14 : namespace dunedaq::detdataformats::python {
15 :
16 0 : PYBIND11_MODULE(_daq_detdataformats_py, m)
17 : {
18 :
19 0 : m.doc() = "c++ implementation of the dunedaq detdataformats modules"; // optional module docstring
20 :
21 0 : register_detid(m);
22 0 : register_daqheader(m);
23 0 : register_daqethheader(m);
24 0 : register_hsi(m);
25 0 : }
26 :
27 : } // namespace dunedaq::detdataformats::python
|