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

📄 exerciseevent.h

📁 symbian手机开发程序
💻 H
字号:
#ifndef EXERCISEEVENT_H_
#define EXERCISEEVENT_H_
#include<e32base.h>
class MEventObserver
	{
public:
	virtual void UpdateEvent(const TDesC& aText) = 0;
	};

class CExerciseEvent:public CActive
	{
public:
	CExerciseEvent(MEventObserver& aObserver);
	~CExerciseEvent();
	static CExerciseEvent* NewL(MEventObserver& aObserver);
	static CExerciseEvent* NewLC(MEventObserver& aObserver);	
	void Start();
	void RunL();
	void DoCancel();
private:
	void ConstructL();
private:
	RTimer iTimer;//Asynchronous timer services
	TTime iTime;//Stores and manipulates the date and time.
	TBool iStop;
	MEventObserver& iObserver;
	};
#endif /*EXERCISEEVENT_H_*/

⌨️ 快捷键说明

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