📄 rpsplaytimer.h
字号:
// Copyright (c) Symbian Ltd 2008. All rights reserved.
#ifndef RPSPLAYTIMER_
#define RPSPLAYTIMER_
#include <e32base.h>
class CPlayScreen;
class CPlayTimer : public CTimer
{
public:
static CPlayTimer* NewL(TTimeIntervalMicroSeconds32 aInterval, CPlayScreen& aPlayScreen);
~CPlayTimer();
void Start();
protected: // From CActive
virtual void RunL();
private:
CPlayTimer(TTimeIntervalMicroSeconds32 aInterval, CPlayScreen& aPlayScreen);
private:
TTimeIntervalMicroSeconds32 iInterval;
CPlayScreen& iPlayScreen;
};
#endif /*RPSPLAYTIMER_*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -