s60uicodeexapplication.cpp

来自「一个UI的程序」· C++ 代码 · 共 47 行

CPP
47
字号
/*
* ==============================================================================
*  Name        : S60UICodeExApplication.cpp
*  Part of     : S60UICodeEx
*  Interface   :
*  Description :
*  Version     :
*
*  Copyright (c) 2005-2006 Nokia Corporation.
*  This material, including documentation and any related
*  computer programs, is protected by copyright controlled by
*  Nokia Corporation.
* ==============================================================================
*/

// INCLUDE FILES
#include <avkon.hrh>
#include <avkon.rsg>
#include <S60UICodeEx.rsg>
#include "S60UICodeEx.h"

// CONSTANTS
const TUid KUidS60UICodeEx = { 0x8000ABBA };

// ----------------------------------------------------------------------------
// CS60UICodeExApplication::AppDllUid
// The function is called by the UI framework to ask for the
// application's UID. 
// ----------------------------------------------------------------------------
//
TUid CS60UICodeExApplication::AppDllUid() const
	{
	return KUidS60UICodeEx;
	}

// ----------------------------------------------------------------------------
// CS60UICodeExApplication::CreateDocumentL
// Creates an instance of the document class. Called by UI framework.
// ----------------------------------------------------------------------------
//
CApaDocument* CS60UICodeExApplication::CreateDocumentL()
	{
	return new ( ELeave ) CS60UICodeExDocument( *this );
	}

// End of file.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?