⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 icq7app.cpp

📁 Nokia 7710上的ICQ客户端源码, 支持中文即时消息
💻 CPP
字号:
/* ============================================================================
*  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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -