addressbookapp.h
来自「symbian v9.1 下的地址本程序」· C头文件 代码 · 共 54 行
H
54 行
/*
* ==============================================================================
* 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 + =
减小字号Ctrl + -
显示快捷键?