imageconverterapp.h

来自「nokia symbian Image_Converter_Example」· C头文件 代码 · 共 55 行

H
55
字号
/*
* ============================================================================
*  Name     : CImageConverterApp from ImageConverterApp.h
*  Part of  : ImageConverter
*  Created  : 25.11.2003 Forum Nokia
*  Description:
*     Declares main application class.
*  Version  :
*  Copyright: Nokia Corporation
* ============================================================================
*/

#ifndef IMAGECONVERTERAPP_H
#define IMAGECONVERTERAPP_H

// INCLUDES
#include <aknapp.h>

// CONSTANTS
// UID of the application
const TUid KUidImageConverter = { 0x101F5467 };

// CLASS DECLARATION

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

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

#endif

// End of File

⌨️ 快捷键说明

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