GCC Code Coverage Report
Directory: src/ Exec Total Coverage
File: src/device-python.cc Lines: 0 3 0.0 %
Date: 2022-09-12 09:50:59 Branches: 0 6 0.0 %

Line Branch Exec Source
1
#include "dynamic-graph/python/module.hh"
2
#include "sot-tiago-device.hh"
3
4
namespace dg = dynamicgraph;
5
6
BOOST_PYTHON_MODULE(wrap) {
7
  bp::import("dynamic_graph.sot.core.wrap");
8
9
  dynamicgraph::python::exposeEntity<SoTTiagoDevice,
10
                                     bp::bases<dg::sot::Device> >();
11
}