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

📄 addressbookapp.h

📁 symbian v9.1 下的地址本程序
💻 H
字号:
/*
* ==============================================================================
*  Name        : AddressBookApp.h
*  Part of     : AddressBook
*  Interface   : 
*  Description : A main application class, CAddressBookApp 
*				 - starting point of the program
*  Version     : 
*
*  Copyright (c) 2002-2006 Nokia Corporation.
*  This material, including documentation and any related 
*  computer programs, is protected by copyright controlled by 
*  Nokia Corporation.
* ==============================================================================
*/

#ifndef ADDRESSBOOKAPP_H
#define ADDRESSBOOKAPP_H

// INCLUDES
#include <aknapp.h>

// CONSTANTS
// UID of the application
const TUid KUidAddressBookApp = { 0xA0000180 };

// CLASS DECLARATION

/**
* CAddressBookApp application class.
* Provides factory to create concrete document object.
*/
class CAddressBookApp : public CAknApplication
    {
    private: // Functions from base classes

        /**
        * From CApaApplication, creates CAddressBookDocument document object.
        * @return A pointer to the created document object.
        */
        CApaDocument* CreateDocumentL();
        
        /**
        * From CApaApplication, returns application's UID (KUidAddressBookApp).
        * @return The value of KUidAddressBookApp.
        */
        TUid AppDllUid() const;
    };

#endif //ADDRESSBOOKAPP_H

// End of File

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -