📄 aknexsliderapp.h
字号:
/* Copyright (c) 2004, Nokia. All rights reserved */
#ifndef __AKNEXSLIDERAPP_H__
#define __AKNEXSLIDERAPP_H__
// INCLUDES
#include <Aknapp.h>
// CONSTANTS
const TUid KUidAknExSlider = { 0x10005C28 }; // UID of the application.
// CLASS DECLARATION
/**
* CAknExSliderApplication application class.
* Provides factory to create concrete document object.
*/
class CAknExSliderApplication : public CAknApplication
{
private: // From CApaApplication
/**
* From CApaApplication, CreateDocumentL.
* Creates CAknExSliderDocument document object.
* @return A pointer to the created document object.
*/
CApaDocument* CreateDocumentL();
/**
* From CApaApplication, AppDllUid.
* Returns application's UID ( KUidAknExSlider ).
* @return The value of KUidAknExSlider.
*/
TUid AppDllUid() const;
};
#endif // __AKNEXSLIDERAPP_H__
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -