forked from RobotLocomotion/drake
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanipulation_py.h
More file actions
29 lines (20 loc) · 908 Bytes
/
manipulation_py.h
File metadata and controls
29 lines (20 loc) · 908 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#pragma once
/* This file declares the functions that bind the drake::manipulation namespace.
These functions form a complete partition of the drake::manipulation bindings.
The implementations of these functions are parceled out into various *.cc
files as indicated in each function's documentation. */
#include "drake/bindings/pydrake/pydrake_pybind.h"
namespace drake {
namespace pydrake {
namespace internal {
/* Defines bindings per manipulation_py_kuka_iiwa.cc. */
void DefineManipulationKukaIiwa(py::module m);
/* Defines bindings per manipulation_py_franka_panda.cc. */
void DefineManipulationFrankaPanda(py::module m);
/* Defines bindings per manipulation_py_schunk_wsg.cc. */
void DefineManipulationSchunkWsg(py::module m);
/* Defines bindings per manipulation_py_util.cc. */
void DefineManipulationUtil(py::module m);
} // namespace internal
} // namespace pydrake
} // namespace drake