imagesviewerapp.h

来自「symbian上显示动态gif的源码」· C头文件 代码 · 共 51 行

H
51
字号
/*
============================================================================
 Name        : CImagesViewerApp from ImagesViewerApp.h
 Author      : 
 Version     :
 Copyright   : Your copyright notice
 Description : Declares main application class.
============================================================================
*/

#ifndef IMAGESVIEWERAPP_H
#define IMAGESVIEWERAPP_H

// INCLUDES
#include <aknapp.h>

// CONSTANTS
// UID of the application
const TUid KUidImagesViewer = { 0x05ccd29a };

// CLASS DECLARATION

/**
* CImagesViewerApp application class.
* Provides factory to create concrete document object.
* 
*/
class CImagesViewerApp : public CAknApplication
    {
    
    public: // Functions from base classes
    private:

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

#endif



⌨️ 快捷键说明

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