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 daqdataformats {
16namespace python {
17
18extern void
19register_sourceid(py::module&);
20extern void
21register_fragment(py::module&);
22extern void
24extern void
25register_trigger_record(py::module&);
26extern void
27register_timeslice(py::module&);
28
29PYBIND11_MODULE(_daq_daqdataformats_py, m)
30{
31
32 m.doc() = "c++ implementation of the dunedaq daqdataformats modules"; // optional module docstring
33
39}
40
41} // namespace python
42} // namespace daqdataformats
43} // namespace dunedaq
void register_fragment(py::module &m)
Definition fragment.cpp:23
void register_trigger_record(py::module &)
PYBIND11_MODULE(_daq_daqdataformats_py, m)
Definition module.cpp:29
void register_timeslice(py::module &)
void register_component_request(py::module &m)
void register_sourceid(py::module &)
Definition sourceid.cpp:22
Including Qt Headers.