📄 imageconverterapp.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 + -