filefetcherdocument.h

来自「nokia symbian File_Fetching」· C头文件 代码 · 共 122 行

H
122
字号
/*
 * ============================================================================
 *  Name     : FileFetcherDocument.h
 *  Part of  : File fetching Example
 *  Created  : 12/9/2003 by Forum Nokia
 *  Implementation notes:
 *
 *     
 *  Version  : 1.0
 *  Copyright: Nokia Corporation
 * ============================================================================
 */

#ifndef __FILEFETCHER_DOCUMENT_H__
#define __FILEFETCHER_DOCUMENT_H__

#include <akndoc.h>

/**
* Forward declarations
*/
class CFileFetcherAppUi;
class CEikApplication;

class CFileFetcherDocument : public CAknDocument
    {
public:
	/*
	* NewL()
	*  
	* Create a CFileFetcherDocument object.
	*
	* Params: 
	*		aApp: Reference to application this document relates.
	* 
	* Returns:
	* 		
	*
	*/
    static CFileFetcherDocument* NewL(CEikApplication& aApp);

	/*
	* NewLC()
	*  
	* Create a CFileFetcherDocument object.
	*
	* Params: 
	*		aApp: Reference to application this document relates.
	* 
	* Returns:
	* 		
	*
	*/
    static CFileFetcherDocument* NewLC(CEikApplication& aApp);

	/*
	* ~CFileFetcherDocument()
	*  
	* Destructor for CFileFetcherDocument.
	*
	* Params: 
	*		-
	* 
	* Returns:
	* 		-
	*
	*/
    ~CFileFetcherDocument();

/*
* From CAknDocument
*/
public:
	/*
	* CreateAppUiL()
	*
	* Creates the application user interface, and returns a pointer to it;
	* the framework takes ownership of this object
	*
	* Params: 
	*		-
	*
	* Returns:
	*		Pointer to created application ui.
	*
	*/
    CEikAppUi* CreateAppUiL();

private:
	/*
	* ConstructL()
	*
	* Second phase construction.
	*
	* Params: 
	*		- 
	* 
	* Returns:
	* 		-
	*
	*/
    void ConstructL();

	/*
	* CFileFetcherDocument()
	*
	* First phase construction.
	*
	* Params: 
	*		aApp: Reference to application this document relates.
	* 
	* Returns:
	* 		-
	*
	*/
    CFileFetcherDocument(CEikApplication& aApp);

    };


#endif // __FILEFETCHER_DOCUMENT_H__

⌨️ 快捷键说明

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