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

📄 imageconverterapp.h

📁 Symbian OS 图片转换程序源代码 可以学习一下
💻 H
字号:
/*
* ============================================================================
*  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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -