diff options
Diffstat (limited to 'core/btdiscovery.h')
-rw-r--r-- | core/btdiscovery.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/btdiscovery.h b/core/btdiscovery.h index e4d265616..1951b6672 100644 --- a/core/btdiscovery.h +++ b/core/btdiscovery.h @@ -40,11 +40,13 @@ public: void getBluetoothDevices(); #endif QList<struct btVendorProduct> getBtDcs(); + QList<struct btVendorProduct> getBtAllDevices(); #endif private: static BTDiscovery *m_instance; #if defined(BT_SUPPORT) - QList<struct btVendorProduct> btDCs; + QList<struct btVendorProduct> btDCs; // recognized DCs + QList<struct btVendorProduct> btAllDevices; // all paired BT stuff #endif #if defined(Q_OS_ANDROID) bool checkException(const char* method, const QAndroidJniObject* obj); |