⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 viewexapp.h

📁 Symbian OS C++ 程序开发事例
💻 H
字号:
/*
* ============================================================================
*  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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -