taskmanageriapdialog.h
来自「symbian s60 end to end socket程序源码 基于第二版」· C头文件 代码 · 共 56 行
H
56 行
/*
* ============================================================================
* Name : CTaskManagerIapDialog from TaskManagerIapDialog.h
* Part of : TaskManager
* Created : 08/31/2005 by Forum Nokia
* Version : 1.0
* Copyright: Nokia Corporation
* ============================================================================
*/
#ifndef __TASKMANAGERIAPDIALOG_H__
#define __TASKMANAGERIAPDIALOG_H__
// INCLUDE FILES
#include <eikdialg.h>
// CLASS DECLARATION
/**
* A class for selecting IAP.
*/
class CTaskManagerIapDialog : public CEikDialog
{
public: // Constructors and destructor
/**
* Constructor
*/
CTaskManagerIapDialog(CDesCArray& aIaps, TInt& aSelectedIap);
/**
* Destructor
*/
~CTaskManagerIapDialog();
private: // Functions from base classes
/**
* From CEikDialog
*/
TBool OkToExitL(TInt aKeyCode);
/**
* From CEikDialog
*/
void PreLayoutDynInitL();
private: // Data members
CDesCArray& iIaps;
TInt& iSelectedIap;
};
#endif // __APPLISTBOXDIALOG_H__
// End of file
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?