myfiledlg.h
来自「简单的socket请求」· C头文件 代码 · 共 61 行
H
61 行
/* Copyright (c) 2008, Nokia. All rights reserved */
#ifndef __CMYFILEDLG_H__
#define __CMYFILEDLG_H__
#include <e32base.h>
class CMyFileDlg : public CBase
{
public :
/*!
@function NewL
@discussion Construct a CDll$ object using two phase construction,
and return a pointer to the created object
@result a pointer to the created instance of CDll
*/
IMPORT_C static CMyFileDlg* NewL();
/*!
@function NewLC
@discussion Construct a CDll$ object using two phase construction,
and return a pointer to the created object
@result a pointer to the created instance of CDll
*/
IMPORT_C static CMyFileDlg* NewLC();
/*!
@function ~CDll
@discussion Destroy the object
*/
IMPORT_C ~CMyFileDlg();
/*!
@function Command1
@discussion Perform user required function 1
*/
IMPORT_C void Command1();
private:
/*!
@function ConstructL
@discussion Perform the second phase construction of a CDll object
*/
void ConstructL();
/*!
@function CDll
@discussion Perform the first phase of two phase construction
*/
CMyFileDlg();
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?