camdecodedlg.h
来自「PartiTekSDK.chm is for windows, Unix/Lin」· C头文件 代码 · 共 66 行
H
66 行
/*
============================================================================
Name : CamDecodeDlg.h
Author : Augusta
Version :
Copyright : All rights reserved
Description : CCamDecodeDlg declaration
============================================================================
*/
#ifndef CAMDECODEDLG_H
#define CAMDECODEDLG_H
// INCLUDES
#include <e32std.h>
#include <AknDialog.h>
// CLASS DECLARATION
class CEikDialog;
/**
* CCamDecodeDlg
*
*/
class CCamDecodeDlg : public CAknDialog
{
public: // Constructors and destructor
/**
* Destructor.
*/
~CCamDecodeDlg();
/**
* Two-phased constructor.
*/
static CCamDecodeDlg* NewL();
/**
* Two-phased constructor.
*/
static CCamDecodeDlg* NewLC();
TBool OkToExitL( TInt aButtonId );
TBool RunDlgLD(char* info);
void PreLayoutDynInitL();
private:
/**
* Constructor for performing 1st stage construction
*/
CCamDecodeDlg();
/**
* EPOC default constructor for performing 2nd stage construction
*/
void ConstructL();
private:
char* iInfo;
};
#endif // CAMDECODEDLG_H
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?