engine.h
来自「《SymbianOSC手机应用开发》源码」· C头文件 代码 · 共 26 行
H
26 行
// engine.h
//
// Copyright (c) 2000 Symbian Ltd. All rights reserved.
#ifndef __ENGINE_H
#define __ENGINE_H
#include <e32base.h>
class CGameEngine : public CBase
{
public:
~CGameEngine();
// interrogate
const TDesC& LastSent() const;
const TDesC& LastReceived() const;
// set
void SetLastSentL(const TDesC& aString);
void SetLastReceivedL(const TDesC& aString);
private:
HBufC* iLastSent;
HBufC* iLastReceived;
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?