ftpexampledocument.h

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

H
63
字号
/*
* ============================================================================
*  Name     : CFtpExampleDocument from FtpExampleDocument.h
*  Part of  : FtpExample
*  Created  : 03/11/2005 by Forum Nokia
*  Description:
*     Declares document for application.
*  Version  : 1.0
*  Copyright: Nokia Corporation
* ============================================================================
*/

#ifndef FTPEXAMPLEDOCUMENT_H
#define FTPEXAMPLEDOCUMENT_H

// INCLUDE FILES
#include <akndoc.h>	  //CAknDocument
#include "FtpExample.hrh"

// FORWARD DECLARATIONS
class  CEikAppUi;
	
// CLASS DECLARATION

/**
*  CFtpExampleDocument document class.
*/
class CFtpExampleDocument : public CAknDocument
    {
public: // Constructors and destructor
	
	/**
	* Two-phased constructor.
	*/
	static CFtpExampleDocument* NewL(CEikApplication& aApp);

	/**
	* Destructor.
	*/
	virtual ~CFtpExampleDocument();

private:

	/**
	* Symbian OS default constructor.
	*/
	CFtpExampleDocument(CEikApplication& aApp);
	void ConstructL();

    /**
    * From CEikDocument, create CFtpExampleAppUi "App UI" object.
    */
    CEikAppUi* CreateAppUiL();

private: // data members   

    };

#endif

// End of File

⌨️ 快捷键说明

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