📄 aoexampleapp.h
字号:
/*
* ==============================================================================
* Name : CAOExampleApp
* Part of : AOExample
* Created : 3.5.2004 by Markus Pelkonen
* Description: Declares main application class.
* Version :
* Copyright: Nokia
* ==============================================================================
*/
#ifndef AOEXAMPLEAPP_H
#define AOEXAMPLEAPP_H
#include <aknapp.h>
#include "AOExampleAppUID.h"
const TUid KUidAOExample = { AO_EXAMPLE_APP_UID };
/**
* CAOExampleApp application class.
* Provides factory method to create concrete document object.
*/
class CAOExampleApp : public CAknApplication
{
private: // from CAknApplication
/**
* From CApaApplication, creates CAOExampleDocument document object.
* @return A pointer to the created document object.
*/
CApaDocument* CreateDocumentL();
/**
* From CApaApplication, returns application's UID (KUidAOExample).
* @return The value of KUidAOExample.
*/
TUid AppDllUid() const;
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -