icq7app.cpp
来自「Nokia 7710上的ICQ客户端源码, 支持中文即时消息」· C++ 代码 · 共 65 行
CPP
65 行
/* ============================================================================
* Name : CIcq7App from Icq7App.cpp
* Part of : Icq7
* Created : 09.06.2006 by Maksim Nazarenko
* Implementation notes:
* Initial content was generated by Series 90 Application Wizard.
* Version :
* Copyright: (c) 2006 Maksim Nazarenko
* ============================================================================
*/
// INCLUDE FILES
#include "Icq7App.h"
#include "Icq7Document.h"
#include "GlobalLeaveMessenger.h"
// ================= MEMBER FUNCTIONS =======================
// ---------------------------------------------------------
// CIcq7App::AppDllUid()
// Returns application UID
// ---------------------------------------------------------
//
TUid CIcq7App::AppDllUid() const
{
return KUidIcq7;
}
// ---------------------------------------------------------
// CIcq7App::CreateDocumentL()
// Creates CIcq7Document object
// ---------------------------------------------------------
//
CApaDocument* CIcq7App::CreateDocumentL()
{
return CIcq7Document::NewL( *this );
}
// ================= OTHER EXPORTED FUNCTIONS ==============
//
// ---------------------------------------------------------
// NewApplication()
// Constructs CIcq7App
// Returns: created application object
// ---------------------------------------------------------
//
EXPORT_C CApaApplication* NewApplication()
{
return new CIcq7App();
}
// ---------------------------------------------------------
// E32Dll(TDllReason)
// Entry point function for EPOC Apps
// Returns: KErrNone: No error
// ---------------------------------------------------------
//
GLDEF_C TInt E32Dll( TDllReason /*aReason*/ )
{
return KErrNone;
}
// End of File
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?