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
14
15namespace py = pybind11;
16
18
19extern void
20register_dal_methods(py::module&);
21
22PYBIND11_MODULE(_daq_confmodel_py, m)
23{
24
25 m.doc() = "C++ implementation of the confmodel modules";
26#if 0
27 py::class_<dunedaq::confmodel::DaqApplication>(m,"DaqApplication")
28 .def(py::init<conffwk::Configuration& , const conffwk::ConfigObject&>())
30 py::class_<dunedaq::confmodel::HostComponent>(m,"HostComponent");
31#endif
33}
34
35} // namespace dunedaq::confmodel::python
std::set< const dunedaq::confmodel::HostComponent * > get_used_hostresources() const
PYBIND11_MODULE(_daq_confmodel_py, m)
Definition module.cpp:22
void register_dal_methods(py::module &m)