s60uiexampleapplication.h
来自「symbianOS第三版开发与实用教程部分源码和部分试验」· C头文件 代码 · 共 38 行
H
38 行
// Copyright (c) 2006 Nokia Corporation.
#ifndef __S60UIEXAMPLEAPPLICATION_H__
#define __S60UIEXAMPLEAPPLICATION_H__
#include <aknapp.h>
/**
* CS60UIExampleApplication application class.
* Provides factory to create concrete document object.
* An instance of CS60UIExampleApplication is the application part of the
* AVKON application framework for the S60UIExample example application.
*/
class CS60UIExampleApplication : public CAknApplication
{
public: // Functions from base classes
/**
* From CApaApplication, AppDllUid.
* @return Application's UID (KUidS60UIExampleApp).
*/
TUid AppDllUid() const;
protected: // Functions from base classes
/**
* From CApaApplication, CreateDocumentL.
* Creates CS60UIExampleDocument document object. The returned
* pointer in not owned by the CS60UIExampleApplication object.
* @return A pointer to the created document object.
*/
CApaDocument* CreateDocumentL();
};
#endif // __S60UIEXAMPLEAPPLICATION_H__
// End of File
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?