?? iapconnectapp.h
字號:
/*
* ============================================================================
* Name : CIAPConnectApp from IAPConnectApp.h
* Part of : Internet Access Points Example v2.0
* Description:
* Declares main application class.
* Created : 01.09.2006 by Forum Nokia
* Version : 2.0
* Copyright: Forum Nokia
* ============================================================================
*/
#ifndef IAPCONNECT_APP_H
#define IAPCONNECT_APP_H
// INCLUDES
#include <aknapp.h>
// CONSTANTS
// UID of the application
#ifdef __SERIES60_3X__
const TUid KUidIAPConnect = { 0xE1053EAA };
#else
const TUid KUidIAPConnect = { 0x11053EAA };
#endif
// CLASS DECLARATION
/**
* CIAPConnectApp application class.
* Provides factory to create concrete document object.
*
*/
class CIAPConnectApp : public CAknApplication
{
public: // Functions from base classes
private: // From CApaApplication
/*
* CreateDocumentL()
*
* Creates CIAPConnectDocument document object
*
* Returns:
* A pointer to the created document object
*
*/
CApaDocument* CreateDocumentL();
/*
* AppDllUid()
*
* Returns application's UID
*
* Returns:
* TUid The value of KUidIAPConnect
*
*/
TUid AppDllUid() const;
};
#endif
// End of File
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -