From 1b80286772b529a3d6de3bbeb0720c62e6a32fed Mon Sep 17 00:00:00 2001 From: Oliver Ruiz Dorantes Date: Tue, 21 Apr 2009 18:21:40 +0000 Subject: [PATCH] Move GetID to public API git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30298 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/os/bluetooth/LocalDevice.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/headers/os/bluetooth/LocalDevice.h b/headers/os/bluetooth/LocalDevice.h index f2e3fd0a22..d4a80c4ff4 100644 --- a/headers/os/bluetooth/LocalDevice.h +++ b/headers/os/bluetooth/LocalDevice.h @@ -46,7 +46,7 @@ public: ServiceRecord getRecord(Connection notifier); void updateRecord(ServiceRecord srvRecord); */ - + hci_id GetID(void) {return hid;} private: LocalDevice(hci_id hid); virtual ~LocalDevice(); @@ -54,7 +54,7 @@ private: status_t ReadLocalVersion(); status_t ReadBufferSize(); status_t Reset(); - hci_id GetID(void) {return hid;} + static LocalDevice* RequestLocalDeviceID(BMessage* request); BMessenger* fMessenger; @@ -64,6 +64,7 @@ private: friend class DiscoveryAgent; friend class RemoteDevice; friend class PincodeWindow; + }; }