⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 vrexdocument.h

📁 S60官方视屏播放器程序
💻 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 + -