#ifndef DEVICE_BLUETOOTH_BLUETOOTH_PROFILE_WIN_H_
#define DEVICE_BLUETOOTH_BLUETOOTH_PROFILE_WIN_H_
#include <string>
#include "device/bluetooth/bluetooth_profile.h"
#include "device/bluetooth/bluetooth_uuid.h"
namespace device {
class BluetoothDeviceWin;
class BluetoothProfileWin : public BluetoothProfile {
public:
virtual void Unregister() OVERRIDE;
virtual void SetConnectionCallback(
const ConnectionCallback& callback) OVERRIDE;
bool Connect(const BluetoothDeviceWin* device);
private:
friend BluetoothProfile;
BluetoothProfileWin(const BluetoothUUID& uuid, const std::string& name);
virtual ~BluetoothProfileWin();
const BluetoothUUID uuid_;
const std::string name_;
ConnectionCallback connection_callback_;
};
}
#endif