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

📄 recorderapp.h

📁 play stream media file. OS: symbian s60
💻 H
字号:
/*
* ============================================================================
*  Name     : CRecorder
*  Part of  : RecorderExample
*  Created  : 20.03.2005 by Forum Nokia
*  Description:
*     Declares main applicate class.
*  Version  : 1.0.0
*  Copyright: Nokia Corporation
* ============================================================================
*/


#ifndef RECORDERAPP_H
#define RECORDERAPP_H

// INCLUDES
#include <aknapp.h>

// CONSTANTS
// UID of the application
const TUid KUidRecorder = { 0x101FF1Ce };

// CLASS DECLARATION

/**
* CRecorderApp application class.
* Provides factory to create concrete document object.
* 
*/
class CRecorderApp : public CAknApplication
    {
    private:  // From CApaApplication

        /**
        * From CApaApplication,
        * creates CRecorderDocument document object.
        * @return A pointer to the created document object.
        */
        CApaDocument* CreateDocumentL();

        /**
        * From CApaApplication,
        * returns application's UID ( KUidRecorder ).
        * @return The value of KUidRecorder.
        */
        TUid AppDllUid() const;
    };

#endif 

// End of File

⌨️ 快捷键说明

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