⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 iobexsender.hh

📁 It s a tool designed to extract as much information as possible from Bluetooth devices without the r
💻 HH
字号:
/* -*- c++ -*- ---------------------------------------------------------------   Copyright (C) 2005, SWECO, All Rights Reserved.   Interface for the Bluetooth OBEX file sender facility   $Id$   Author: Zsolt Molnar (Zsolt.Molnar@ieee.org)   ---------------------------------------------------------------------------*/#ifndef __IOBEXSENDER_HH__#define __IOBEXSENDER_HH__#include <string>#include "base.hh"#include "DeviceRecord.hh"#define OS_BUSY_WAIT_TIME 1   // second#ifdef _cplusplusextern "C" {#endifclass IOBEXSender {public:	typedef enum tSendState {		ACCEPTED,		TIMEOUT,		REFUSED,		ERROR	};public:	IOBEXSender() {};	virtual ~IOBEXSender() {};	virtual tSendState send(const string& aFileName, const string& aTitle) = 0;	virtual void setPort(const string& aPort) = 0;};#ifdef _cplusplus}#endif#endif /* #ifndef __IOBEXSENDER_HH__ */   

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -