mirror of
https://github.com/intrepidcs/libicsneo.git
synced 2026-08-05 01:18:36 +02:00
14 lines
372 B
C++
14 lines
372 B
C++
#include <pybind11/pybind11.h>
|
|
#include <pybind11/stl.h>
|
|
|
|
#include "icsneo/communication/message/allmacaddressesmessage.h"
|
|
|
|
namespace icsneo {
|
|
|
|
void init_allmacaddressesmessage(pybind11::module_& m) {
|
|
pybind11::classh<AllMACAddressesMessage, Message>(m, "AllMACAddressesMessage")
|
|
.def_readonly("addresses", &AllMACAddressesMessage::addresses);
|
|
}
|
|
|
|
} // namespace icsneo
|