📄 vrexdocument.h
字号:
/*
* ============================================================================
* Name : CVRexDocument from VRexDocument.h
* Part of : Video Example
* Created : 30/08/2006 by Forum Nokia
* Implementation notes:
* Version : 2.0
* Copyright: Nokia Corporation, 2006
* ============================================================================
*/
#ifndef __VREXDOCUMENT_H__
#define __VREXDOCUMENT_H__
// INCLUDES
#include <akndoc.h>
#include "VRexEngine.h"
// CONSTANTS
// 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();
public: // New functions
CVRexEngine* Engine();
public: // Functions from base classes
protected: // New functions
protected: // Functions from base classes
private:
/**
* EPOC default constructor.
*/
CVRexDocument(CEikApplication& aApp);
void ConstructL();
private:
/**
* From CEikDocument, create CVRexAppUi "App UI" object.
*/
CEikAppUi* CreateAppUiL();
private: // data
CVRexEngine* iEngine;
};
#endif //__VREXDOCUMENT_H__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -