?? listboxappapp.h
字號(hào):
/*
* ============================================================================
* Name : CListBoxAppApp from ListBoxAppApp.h
* Part of : ListBoxApp
* Created : 2006-2-23 by
* Description:
* Declares main application class.
* Version :
* Copyright:
* ============================================================================
*/
#ifndef LISTBOXAPPAPP_H
#define LISTBOXAPPAPP_H
// INCLUDES
#include <aknapp.h>
// CONSTANTS
// UID of the application
const TUid KUidListBoxApp = { 0x031E3BFA };
// CLASS DECLARATION
/**
* CListBoxAppApp application class.
* Provides factory to create concrete document object.
*
*/
class CListBoxAppApp : public CAknApplication
{
public: // Functions from base classes
private:
/**
* From CApaApplication, creates CListBoxAppDocument document object.
* @return A pointer to the created document object.
*/
CApaDocument* CreateDocumentL();
/**
* From CApaApplication, returns application's UID (KUidListBoxApp).
* @return The value of KUidListBoxApp.
*/
TUid AppDllUid() const;
};
#endif
// End of File
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -