Control Libraries
6.3.4
Loading...
Searching...
No Matches
python
source
clproto
clproto_bindings.cpp
1
#include "clproto_bindings.h"
2
3
#define STRINGIFY(x) #x
4
#define MACRO_STRINGIFY(x) STRINGIFY(x)
5
6
PYBIND11_MODULE(
clproto
, m) {
7
m.doc() =
"Python bindings for control_libraries clproto"
;
8
9
#ifdef MODULE_VERSION_INFO
10
m.attr(
"__version__"
) = MACRO_STRINGIFY(MODULE_VERSION_INFO);
11
#else
12
m.attr(
"__version__"
) =
"dev"
;
13
#endif
14
15
py::module_::import(
"state_representation"
);
16
17
bind_clproto(m);
18
}
clproto
Bindings to encode and decode state objects into serialised binary message.
Generated by
1.9.5