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