ftpexampleapp.h

来自「Symbian智能手机操作系统源代码值的参考_网络ftp」· C头文件 代码 · 共 51 行

H
51
字号
/*
* ============================================================================
*  Name     : CFtpExampleApp from FtpExampleApp.h
*  Part of  : FtpExample
*  Created  : 03/11/2005 by Forum Nokia
*  Description:
*     Declares main application class.
*  Version  : 1.0
*  Copyright: Nokia Corporation
* ============================================================================
*/

#ifndef __FTPEXAMPLEAPP_H
#define __FTPEXAMPLEAPP_H

// INCLUDES
#include <aknapp.h>

// CONSTANTS
// UID of the application
const TUid KUidFtpExample = { 0x0F642F0F };

// CLASS DECLARATION

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

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

#endif

// End of File

⌨️ 快捷键说明

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