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
15
16extern void
17register_dal_methods(py::module&);
18
19PYBIND11_MODULE(_daq_appmodel_py, m)
20{
21
22 m.doc() = "C++ implementation of the application dal modules";
23
25}
26
27} // namespace dunedaq::appmodel::python
PYBIND11_MODULE(_daq_appmodel_py, m)
Definition module.cpp:19
void register_dal_methods(py::module &m)