mydllappbaseview.h
来自「symbian操作系统下如何生成和调用DLL的实例代码。」· C头文件 代码 · 共 34 行
H
34 行
// MyDllAppBaseView.h
#ifndef __MYDLLAPPBASEVIEW_H__
#define __MYDLLAPPBASEVIEW_H__
#include <QikViewBase.h>
class CMyDllAppBaseView : public CQikViewBase
{
public:
static CMyDllAppBaseView* NewLC(CQikAppUi& aAppUi);
~CMyDllAppBaseView();
TVwsViewId ViewId() const;
protected:
void ViewConstructL();
private:
CMyDllAppBaseView(CQikAppUi& aAppUi);
void ConstructL();
void Draw(const TRect& aRect) const;
void HandleCommandL(CQikCommand& aCommand);
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?