viewexapp.h
来自「Symbian OS C++手机开发源码」· C头文件 代码 · 共 46 行
H
46 行
/*
* ============================================================================
* Name : CViewExApp from ViewExApp.h
* Part of : ViewEx
* Copyright (c) 2004 Symbian Software Ltd. All rights reserved.
* ============================================================================
*/
#ifndef VIEWEXAPP_H
#define VIEWEXAPP_H
// INCLUDES
#include <eikapp.h>
// CONSTANTS
// UID of the application
const TUid KUidViewEx = { 0x0257696A };
// CLASS DECLARATION
/**
* CViewExApp application class.
* Provides factory to create concrete document object.
*
*/
class CViewExApp : public CEikApplication
{
private:
/**
* From CApaApplication, creates CViewExDocument document object.
* @return A pointer to the created document object.
*/
CApaDocument* CreateDocumentL();
/**
* From CApaApplication, returns application's UID (KUidViewEx).
* @return The value of KUidViewEx.
*/
TUid AppDllUid() const;
};
#endif
// End of File
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?