Line data Source code
1 : /**
2 : * @file renameme.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 "pybind11/pybind11.h"
10 : #include "pybind11/stl.h"
11 :
12 : namespace py = pybind11;
13 :
14 : namespace dunedaq::tpglibs::python {
15 :
16 : void
17 0 : register_renameme(py::module& m)
18 0 : {}
19 :
20 : } // namespace dunedaq::tpglibs::python
|