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

📄 countdown.h

📁 EMCC源代码 Symbian S60第二版
💻 H
字号:
// countdown.h
//
// Copyright (c) Symbian Software Ltd 1999 - 2007.  All rights reserved.
//

#ifndef __COUNTDOWN_H
#define __COUNTDOWN_H

class CSimpleExAppView;

class CCountdown : public CActive
	{
public:
    static CCountdown* NewL(CSimpleExAppView* aAppView);
    ~CCountdown();
    void StartCountdown();
    void Stop();
protected:
	void RunL();
	void DoCancel();
private:    
	CCountdown();
    void ConstructL(CSimpleExAppView* aAppView);
private:
    TInt iCount;
    RTimer iTimer;
    TInt iInterval;
	CSimpleExAppView* iAppView;
	};

#endif

⌨️ 快捷键说明

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