mirror of
https://github.com/intrepidcs/libicsneo.git
synced 2026-09-22 00:48:40 +02:00
14 lines
327 B
C++
14 lines
327 B
C++
#include <pybind11/pybind11.h>
|
|
|
|
#include "icsneo/communication/message/main51message.h"
|
|
|
|
namespace icsneo {
|
|
|
|
void init_main51message(pybind11::module_& m) {
|
|
pybind11::classh<Main51Message, RawMessage>(m, "Main51Message")
|
|
.def(pybind11::init<>())
|
|
.def_readonly("command", &Main51Message::command);
|
|
}
|
|
|
|
} // namespace icsneo
|