📄 bluetoothreqhandler.h
字号:
/*
============================================================================
Name : BluetoothReqHandler.h
Author :
Version :
Copyright : Your copyright notice
Description : Simple AO example to make an async request to the server.
============================================================================
*/
#ifndef __BLUETOOTHREQHANDLER_H__
#define __BLUETOOTHREQHANDLER_H__
#include <e32base.h>
#include "BluetoothServerSession.h"
class CBluetoothReqHandler : public CActive
{
public:
static CBluetoothReqHandler* NewL();
static CBluetoothReqHandler* NewLC();
virtual ~CBluetoothReqHandler();
public: // New functions
void RequestTime();
void CancelRequest() ;
TTime Time() const;
protected: // Functions from base classes
void RunL();
void DoCancel();
private:
CBluetoothReqHandler();
void ConstructL();
private: // Data
RBluetoothServerSession iSession;
TTime iTime;
};
#endif //__BLUETOOTHREQHANDLER_H__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -