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

📄 videoapp.h

📁 symbian video 的 实现
💻 H
字号:
/*
* ============================================================================
*  Name     : VideoApp.h
*  Part of  : Video
*  Created  : 10/14/2003 by Forum Nokia
*  Description:
*     Declares main application class.
*  Version  :
*  Copyright: Forum Corporation, 2003
* ============================================================================
*/

#ifndef VIDEOAPP_H
#define VIDEOAPP_H

#include <aknapp.h>

const TUid KUidVideo = { 0x01EF0032 };

/**
 *  CVideoApp application class
 */
class CVideoApp : public CAknApplication
    {
    
    public: // Functions from base classes
    private:

        /**
         * From CApaApplication, creates CVideoDocument document object.
         * @return A pointer to the created document object.
         */
        CApaDocument* CreateDocumentL();
        
        /**
         * From CApaApplication, returns application's UID (KUidVideo).
         * @return The value of KUidVideo.
         */
        TUid AppDllUid() const;
    };

#endif

⌨️ 快捷键说明

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