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

📄 multiviewsapplication.h

📁 Symbian OS 源码:一个基于Symbian OS UI上面的标准VIEW源码。大家共同努力学好SYMBIAN
💻 H
字号:
/* Copyright (c) 2004, Nokia. All rights reserved */


#ifndef __MULTIVIEWS_APPLICATION_H__
#define __MULTIVIEWS_APPLICATION_H__


// INCLUDES
#include <aknapp.h>


// CONSTANTS
// Uid for the application, should match the one in the mmp file
const TUid KUidMultiViewsApp = { 0x10005BCA };


// CLASS DECLARATION

/**
* An instance of CMultiViewsApplication is the application part of the AVKON
* application framework for the MultiViews example application
*/
class CMultiViewsApplication : public CAknApplication
    {

    public:  // from CAknApplication

        /**
        * AppDllUid
        * @return returns application's UID (KUidAknExMenu).
        */
        TUid AppDllUid() const;


    protected: // from CAknApplication


        /**
        * CreateDocumentL
        * Creates CMultiViewsDocument document object.
        * The returned pointer in not owned by the CMultiViewsApplication object.
        * @return A pointer to the created document object.
        */
        CApaDocument* CreateDocumentL();
    };

#endif // __MULTIVIEWS_APPLICATION_H__

// End of File

⌨️ 快捷键说明

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