?? 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 + -