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

📄 recorderdocument.h

📁 play stream media file. OS: symbian s60
💻 H
字号:
/*
* ============================================================================
*  Name     : CRecorderDocument from Recorderdocument.h
*  Part of  : RecorderExample
*  Created  : 20.03.2005 by Forum Nokia
*  Description:
* 	 Declares document for application.
*  Version  : 1.0.0
*  Copyright: Nokia Corporation
* ============================================================================
*/

#ifndef RECORDERDOCUMENT_H
#define RECORDERDOCUMENT_H

// INCLUDES
#include <eikdoc.h>

// FORWARD DECLARATIONS
class  CEikAppUi;

// CLASS DECLARATION
/**
*  CRecorderDocument document class.
*/
class CRecorderDocument : public CEikDocument
    {
    public: // Constructors and destructor
       
        /**
        * NewL()
        *
        * @discussion Two-phased constructor.
        */
        static CRecorderDocument* NewL( CEikApplication& aApp );

        /**
        * ~CRecorderDocument()
        *
        * @discussion Destructor.
        */
        virtual ~CRecorderDocument();


    private:  // EPOC default constructor
       
        /**
        * CrecorderDocument()
        *
        * @discussion EPOC Default constructor.
        */
        CRecorderDocument( CEikApplication& aApp );

        /**
        * ConstructL()
        *
        * @discussion EPOC default constructor.
        */
        void ConstructL();

    private:  // From CEikDocument
        
        /**
        * CreateAppUiL()
        *
        * @discussion From CEikDocument,
        * @discussion create CRecorderAppUi "App UI" object.
        * @return A pointer to the created "App UI" object.
        */
        CEikAppUi* CreateAppUiL();

    };

#endif 

// End of File

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -