📄 ftpexampledocument.h
字号:
/*
* ============================================================================
* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -