recorderapp.h

来自「symbian手机通话录音程序」· C头文件 代码 · 共 54 行

H
54
字号
/*
* ============================================================================
*  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 + =
减小字号Ctrl + -
显示快捷键?