btdevice.h
来自「1、手持设备的机器人--服务器端; 2、通过蓝牙通讯;」· C头文件 代码 · 共 49 行
H
49 行
#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 + =
减小字号Ctrl + -
显示快捷键?