aknexnotedocument.h
来自「symbian ui的 例子 初学者可以 好好看看,这个是培训的资料,应该比较宝」· C头文件 代码 · 共 77 行
H
77 行
/*
* ==============================================================================
* Name : aknexnotedocument.h
* Part of : Note example
* Interface :
* Description :
* Version :
*
* Copyright (c) 2004 - 2006 Nokia Corporation.
* This material, including documentation and any related
* computer programs, is protected by copyright controlled by
* Nokia Corporation.
* ==============================================================================
*/
#ifndef __AKNEXNOTEDOCUMENT_H__
#define __AKNEXNOTEDOCUMENT_H__
// INCLUDES
#include <eikdoc.h>
// FORWARD DECLARATIONS
class CEikAppUi;
// CLASS DECLARATION
/**
* CAknExNoteDocument application class.
*/
class CAknExNoteDocument : public CEikDocument
{
public: // Constructors and destructor
/**
* NewL.
* Two-phased constructor.
* Construct a CAknExNoteDocument for the AVKON application aApp.
* Using two phase construction,and return a pointer
* to the created object.
* @param aApp Reference to Application class object.
* @return Pointer to created Document class object.
*/
static CAknExNoteDocument* NewL( CEikApplication& aApp );
/**
* ~CAknExNoteDocument.
* Virtual Destructor.
*/
virtual ~CAknExNoteDocument();
private: // Constructors
/**
* CAknExNoteDocument.
* C++ default constructor.
* @param aApp Reference to Application class object.
*/
CAknExNoteDocument( CEikApplication& aApp );
private: // From CEikDocument
/**
* CreateAppUiL
* Create CAknExNoteAppUi "App UI" object.
* @return Pointer to created AppUi class object.
*/
CEikAppUi* CreateAppUiL();
};
#endif //__AKNEXNOTEDOCUMENT_H__
// End of File
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?