ftpexampleconnectdlg.h

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

H
58
字号
/*
* ============================================================================
*  Name     : CFtpExampleConnectDlg from FtpExampleConnectDlg.h
*  Part of  : FtpExample
*  Created  : 03/11/2005 by Forum Nokia
*  Version  : 1.0
*  Copyright: Nokia Corporation
* ============================================================================
*/

#ifndef FTPEXAMPLECONNECTDLG_H
#define FTPEXAMPLECONNECTDLG_H

// INCLUDE FILES
#include <AknForm.h> 

// CLASS DECLARATION

/**
* A form class for acquiring necessary information for an FTP connection.
*
*/
class CFtpExampleConnectDlg : public CAknForm
	{
public: // Constructors and destructor

	/**
	* Constructor
	*/
	CFtpExampleConnectDlg(TDes& aServer, TDes& aUsername, TDes& aPassword);
	
	/**
	* Destructor
	*/
	virtual ~CFtpExampleConnectDlg();
		
private: // Functions from base classes

	/**
	* From CAknForm. 
	*/
	void PostLayoutDynInitL();
	
	/**
	* From CAknForm.
	*/
	TBool OkToExitL( TInt aKeycode );
	
private: // Data members

	TDes& iServer;
	TDes& iUsername;
	TDes& iPassword;

	};
#endif

// End of file

⌨️ 快捷键说明

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