?? ccontdocument.h
字號:
/* Copyright (c) 2003, Nokia. All rights reserved */
#ifndef __CCONTDOCUMENT_H__
#define __CCONTDOCUMENT_H__
// INCLUDES
#include <akndoc.h>
// FORWARD DECLARATIONS
class CEikAppUi;
// CLASS DECLARATION
/**
* CContDocument application class.
*/
class CContDocument : public CAknDocument
{
public: // Constructors and destructor
/**
* @function NewL
* @discussion Construct a CContDocument for the AVKON application aApp
* using two phase construction, and return a pointer to the created object
* @param aApp application creating this document
* @return a pointer to the created instance of CContDocument
*/
static CContDocument* NewL(CEikApplication& aApp);
/**
* Destructor is always virtual
* @function ~CContDocument
* @discussion Destroy the object and release all memory objects
*/
virtual ~CContDocument();
private:
/**
* @function CContDocument
* @discussion Perform the first phase of two phase construction
* @param aApp application creating this document
*/
CContDocument(CEikApplication& aApp);
/**
* @function ConstructL
*
* @discussion Perform the second phase construction of a
* CContDocument object
*/
void ConstructL();
private:
/**
* @function CreateAppUiL
* @discussion Create a CContAppUi object and return a pointer to it
* @return a pointer to the created instance of the AppUi created
*/
CEikAppUi* CreateAppUiL();
};
#endif // __CCONTDOCUMENT_H__
// End of File
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -