-
Notifications
You must be signed in to change notification settings - Fork 23
QuantumGate::BinaryBTHAddress
Karel Donk edited this page Dec 25, 2021
·
2 revisions
QuantumGate::BinaryBTHAddress is a struct containing details about a Bluetooth address.
struct BinaryBTHAddress
{
BinaryBTHAddress::Family AddressFamily{ BinaryBTHAddress::Family::Unspecified};
union
{
Byte Bytes[6];
UInt64 UInt64s{ 0 };
}
};| Name | Description |
|---|---|
AddressFamily |
The address family. See QuantumGate::BTHAddress::Family for more details. |
Bytes |
The bytes making up the Bluetooth address. |
| Name | Description |
|---|---|
Clear |
Clears the contents and restores the default values. |
operator= |
Assigns a value from another BinaryBTHAddress. |
operator==, operator!=
|
Compares the BinaryBTHAddress to another. |