Auto generating Python bindings (#70)

Auto generating python bindings
This commit is contained in:
Erik Fröjdh
2020-01-07 15:47:38 +01:00
committed by GitHub
parent 086cbacd84
commit ed2a69744b
12 changed files with 481 additions and 268 deletions

View File

@ -38,6 +38,7 @@ class MacAddr {
std::string to_hex(const char delimiter = 0) const;
public:
constexpr MacAddr() noexcept{}
constexpr MacAddr(uint64_t mac) noexcept : addr_{mac} {}
MacAddr(std::string mac);
MacAddr(const char *address);