Line data Source code
1 : /**
2 : * @file toolbox.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 "timing/toolbox.hpp"
10 :
11 : #include <pybind11/pybind11.h>
12 : #include <pybind11/stl.h>
13 :
14 : namespace py = pybind11;
15 :
16 : namespace dunedaq {
17 : namespace timing {
18 : namespace python {
19 :
20 : void
21 0 : register_toolbox(py::module& m)
22 : {
23 0 : m.def("format_firmware_version", &timing::format_firmware_version);
24 0 : }
25 :
26 : } // namespace python
27 : } // namespace timing
28 : } // namespace dunedaq
|