?? imageconverterapp.h
字號:
/*
* ============================================================================
* Name : CImageConverterApp from ImageConverterApp.h
* Part of : ImageConverter
* Created : May 14, 2006 by Forum Nokia
* Description:
* Declares main application class.
* Version : 2.0
* Copyright: Nokia Corporation
* ============================================================================
*/
#ifndef IMAGECONVERTERAPP_H
#define IMAGECONVERTERAPP_H
// INCLUDES
#include <aknapp.h>
// CONSTANTS
// UID of the application
#ifdef __SERIES60_3X__ // 3rd Ed and newer
const TUid KUidImageConverter = { 0xE01F5467 };
#else
const TUid KUidImageConverter = { 0x101F5467 };
#endif
// 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 + -