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

📄 iapconnectapp.h

📁 这是一个手机编程s60 基于c++的关于手机连接internet的数据库协议
💻 H
字号:
/*
* ============================================================================
*  Name     : CIAPConnectApp from IAPConnectApp.h
*  Part of  : Internet Access Points Example v2.0
*  Description:
*     Declares main application class.
*  Created  : 01.09.2006 by Forum Nokia
*  Version  : 2.0
*  Copyright: Forum Nokia
* ============================================================================
*/

#ifndef IAPCONNECT_APP_H
#define IAPCONNECT_APP_H

// INCLUDES
#include <aknapp.h>

// CONSTANTS
// UID of the application
#ifdef __SERIES60_3X__
const TUid KUidIAPConnect = { 0xE1053EAA };
#else
const TUid KUidIAPConnect = { 0x11053EAA };
#endif

// CLASS DECLARATION

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

private: // From CApaApplication

    /*
     * CreateDocumentL()
     *  
     * Creates CIAPConnectDocument document object
     *
     * Returns:
     * A pointer to the created document object
     *
     */
    CApaDocument* CreateDocumentL();

    /*
     * AppDllUid()
     *  
     * Returns application's UID
     *
     * Returns:
     * TUid     The value of KUidIAPConnect
     *
     */
     TUid AppDllUid() const;

    };

#endif

// End of File

⌨️ 快捷键说明

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