📄 btdevice.h
字号:
#ifndef BTDEVICE_
#define BTDEVICE_
/*
* Copyright (c) 2004-2005 Mobile Robotics
* http://mobilerobotics.sf.net
*
* File: BtDevice.h
* Author: Johan Johanson
* Date: January 20, 2005
* Updated: January 20, 2005
*
* Description: Encapsulates information about a Bluetooth device (local or remote)
*
*/
#include <PalmOS.h>
#include <BtLib.h>
class BtDevice
{
friend class BtBase;
friend class BtServerBase;
friend class BtRFCOMMServer;
public:
BtDevice();
~BtDevice();
public:
BtLibSocketRef getSocket();
BtLibDeviceAddressType *getAddress();
BtLibFriendlyNameType *getFriendlyName();
UInt32 getAccessibility();
UInt32 getClassOfDevice();
private:
BtLibSocketRef socket;
BtLibDeviceAddressType address;
BtLibFriendlyNameType friendlyName;
UInt32 accessibility;
UInt32 classOfDevice;
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -