10#ifndef BLUETOOTHDEVICE_HPP
11#define BLUETOOTHDEVICE_HPP
15#include <QBluetoothDeviceInfo>
16#include <QBluetoothAddress>
17#include <QBluetoothUuid>
Auxiliary class that represents single Bluetooth device.
Definition: bluetoothdevice.hpp:33
QString BluetoothDevice_GetName() const
Getter function retrieving device name string.
Definition: bluetoothdevice.cpp:24
QBluetoothDeviceInfo BluetoothDevice_GetDevice()
Getter function for Bluetooth device informations.
Definition: bluetoothdevice.cpp:23
BluetoothDevice()
Class constructor of BluetoothDevice.
Definition: bluetoothdevice.cpp:14
~BluetoothDevice()
Default BluetoothDevice class destructor.
Definition: bluetoothdevice.cpp:16
QString BluetoothDevice_GetAddress() const
Getter function retrieving device address.
Definition: bluetoothdevice.cpp:25
void BluetoothDevice_SignalDeviceChanged()
Signal that gets emitted when device member properties are modified.
void BluetoothDevice_SetDevice(const QBluetoothDeviceInfo &device)
Setter member function that updates Bluetooth device informations.
Definition: bluetoothdevice.cpp:18
QBluetoothDeviceInfo mDevice
QBluetoothDeviceInfo, a member object that holds informations about current device.
Definition: bluetoothdevice.hpp:129