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

📄 myfiledlg.h

📁 简单的socket请求
💻 H
字号:
/* 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -