GCC Code Coverage Report


Directory: ./
File: srcpy/wrappers.cpp
Date: 2023-02-07 15:30:53
Exec Total Coverage
Lines: 0 5 0.0%
Functions: 0 2 0.0%
Branches: 0 28 0.0%

Line Branch Exec Source
1 /**
2 * @file python_bindings.cpp
3 * license License BSD-3-Clause
4 * @copyright Copyright (c) 2019, New York University and Max Planck
5 * Gesellschaft.
6 */
7
8 #include <pybind11/pybind11.h>
9 #include "package_template/pid.hpp"
10
11 using namespace package_template;
12
13 PYBIND11_MODULE(package_template_cpp_bindings, m)
14 {
15 pybind11::class_<PID>(m, "PID")
16 .def(pybind11::init<>())
17 .def("compute", &PID::compute)
18 .def("reset_integral", &PID::reset_integral);
19 }
20