timeouttimer.h
来自「SYMBIAN GPS NMEA协议实现」· C头文件 代码 · 共 48 行
H
48 行
/************************************************************************/
/* Bluetooth Test The.Berlin.Factor April 2003 */
/************************************************************************/
#ifndef __CTimeOutTimer_H__
#define __CTimeOutTimer_H__
#include <E32Base.h>
class MTimeOutNotifier;
// Timer fuer die Benachrichtigung eines Objekts nach einem Time-Out.
class CTimeOutTimer : public CTimer {
public:
static CTimeOutTimer * NewL( const TInt aPriority, MTimeOutNotifier & aTimeOutNotify );
static CTimeOutTimer * NewLC( const TInt aPriority, MTimeOutNotifier & aTimeOutNotify );
~CTimeOutTimer( );
public:
// From CTimer
virtual void RunL( );
private:
CTimeOutTimer( const TInt aPriority, MTimeOutNotifier & aTimeOutNotify );
void ConstructL( );
private:
MTimeOutNotifier & iNotify;
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?