📄 ftpexampleconnectdlg.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 + -