sabberapp.h
来自「Simple Jabber Client for Symbian Platfor」· C头文件 代码 · 共 53 行
H
53 行
/*
* ============================================================================
* Name : CSabberApp from SabberApp.h
* Part of : Sabber
* Created : 2004-12-9 by Xie Tian Lu
* Description:
* Declares main application class.
* Version : 0.1
* Copyright: (c) Xie Tian Lu Http://sabber.jabberstudio.org/
* ============================================================================
*/
#ifndef SABBERAPP_H
#define SABBERAPP_H
// INCLUDES
#include <aknapp.h>
// CONSTANTS
// UID of the application
const TUid KUidSabber = { 0x02E086D5 };
// CLASS DECLARATION
/**
* CSabberApp application class.
* Provides factory to create concrete document object.
*
*/
class CSabberApp : public CAknApplication
{
public: // Functions from base classes
private:
/**
* From CApaApplication, creates CSabberDocument document object.
* @return A pointer to the created document object.
*/
CApaDocument* CreateDocumentL();
/**
* From CApaApplication, returns application's UID (KUidSabber).
* @return The value of KUidSabber.
*/
TUid AppDllUid() const;
};
#endif
// End of File
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?