-
Notifications
You must be signed in to change notification settings - Fork 23
QuantumGate::BTHAddress::BTHAddress
Karel Donk edited this page Dec 25, 2021
·
1 revision
Constructs a QuantumGate::BTHAddress
object.
constexpr BTHAddress() noexcept;
explicit BTHAddress(const WChar* addr_str);
explicit BTHAddress(const String& addr_str);
explicit BTHAddress(const sockaddr_storage* saddr);
explicit BTHAddress(const sockaddr* saddr);
constexpr BTHAddress(const BinaryBTHAddress& bin_addr);
Name | Description |
---|---|
addr_str |
The Bluetooth address in string format. |
saddr |
A pointer to a sockaddr_storage or sockaddr object. |
bin_addr |
A reference to a QuantumGate::BinaryBTHAddress object. |
May throw a std::invalid_argument
exception when any of the parameters are invalid.