⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ftpexampleconnectdlg.h

📁 Symbian智能手机操作系统源代码值的参考_网络ftp
💻 H
字号:
/*
* ============================================================================
*  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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -