36cb67b24e
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36449 a95241bf-73f2-0310-859d-f6bbb57e9c96
51 lines
953 B
C++
51 lines
953 B
C++
/*
|
|
* Copyright 2008 Oliver Ruiz Dorantes, oliver.ruiz.dorantes_at_gmail.com
|
|
* All rights reserved. Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _BLUETOOTH_DEVICE_H
|
|
#define _BLUETOOTH_DEVICE_H
|
|
|
|
#include <bluetooth/bdaddrUtils.h>
|
|
#include <bluetooth/bluetooth.h>
|
|
#include <bluetooth/DeviceClass.h>
|
|
|
|
#include <Message.h>
|
|
#include <Messenger.h>
|
|
#include <String.h>
|
|
|
|
|
|
namespace Bluetooth {
|
|
|
|
class BluetoothDevice {
|
|
|
|
public:
|
|
BluetoothDevice()
|
|
:
|
|
fBdaddr(bdaddrUtils::NullAddress()),
|
|
fDeviceClass()
|
|
{
|
|
|
|
}
|
|
|
|
virtual BString GetFriendlyName()=0;
|
|
virtual DeviceClass GetDeviceClass()=0;
|
|
|
|
virtual BString GetProperty(const char* property)=0;
|
|
virtual status_t GetProperty(const char* property, uint32* value)=0;
|
|
|
|
virtual bdaddr_t GetBluetoothAddress()=0;
|
|
|
|
protected:
|
|
bdaddr_t fBdaddr;
|
|
DeviceClass fDeviceClass;
|
|
};
|
|
|
|
}
|
|
|
|
|
|
#ifndef _BT_USE_EXPLICIT_NAMESPACE
|
|
using Bluetooth::BluetoothDevice;
|
|
#endif
|
|
|
|
#endif // _BLUETOOTH_DEVICE_H
|