📄 vrexdocument.h
字号:
/*
* ============================================================================
* Name : CVRexDocument from VRexDocument.h
* Part of : Video Recording Example (VRex)
* Created : 16.03.2004 by Nokia Forum
* Description:
* Declares document for application.
* Version :
* Copyright: Nokia Corporation
* ============================================================================
*/
#ifndef __VREXDOCUMENT_H__
#define __VREXDOCUMENT_H__
// INCLUDES
#include <akndoc.h>
#include <mmfcontrollerpluginresolver.h> // CMMFFormatImplementationInformation
// FORWARD DECLARATIONS
class CEikAppUi;
class CVRexEngine;
// CLASS DECLARATION
/**
* CVRexDocument application class.
*/
class CVRexDocument : public CAknDocument
{
public: // Constructors and destructor
/**
* Two-phased constructor.
*/
static CVRexDocument* NewL(CEikApplication& aApp);
/**
* Destructor.
*/
virtual ~CVRexDocument();
/**
* This method is used by the "controller", the AppUI class
* to get a handle to the model, that is: engine class
* @return CVRexEngine
*/
CVRexEngine* Model();
private:
/**
* EPOC default constructor.
*/
CVRexDocument(CEikApplication& aApp);
/**
* Second phase constructor.
*/
void ConstructL();
/**
* From CEikDocument, create CVRexAppUi "App UI" object.
* @return CEikAppUi
*/
CEikAppUi* CreateAppUiL();
// Data member declaration
CVRexEngine* iModel;
};
#endif
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -