?? rtxdocument.h
字號:
/*
* ============================================================================
* Name : CRTxDocument from RTxDocument.h
* Part of : RTx
* Created : 2003. 08. 15. by (V) - Forum Nokia
* Description:
* Declares document for application.
* Version :
* Copyright: Forum Nokia
* ============================================================================
*/
#ifndef RTXDOCUMENT_H
#define RTXDOCUMENT_H
// INCLUDES
#include <akndoc.h>
// FORWARD DECLARATIONS
class CEikAppUi;
// CLASS DECLARATION
/**
* CRTxDocument application class.
*/
class CRTxDocument : public CAknDocument
{
public: // Constructors and destructor
/**
* Two-phased constructor.
*/
static CRTxDocument* NewL(CEikApplication& aApp);
/**
* Destructor.
*/
virtual ~CRTxDocument();
private:
/**
* EPOC default constructor.
*/
CRTxDocument(CEikApplication& aApp);
void ConstructL();
private:
/**
* From CEikDocument, create CRTxAppUi "App UI" object.
*/
CEikAppUi* CreateAppUiL();
};
#endif
// End of File
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -