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

📄 oandxapplication.cpp

📁 Symbian OS C++ for Mobile Phones v3 Example Code
💻 CPP
字号:
// Copyright (c) 2004 - 2006, Symbian Software Ltd. All rights reserved.

#include "OandXDocument.h"
#include "OandXApplication.h"


TUid COandXApplication::AppDllUid() const
/**
	Implement CApaApplication by returning this application's UID.
	
	@return					This application's third UID (SECUREID).
 */
	{
	return KUidOandXApp;
	}


CApaDocument* COandXApplication::CreateDocumentL()
/**
	Override override CEikApplication by allocating an
	instance of the document object.
	
	@return					New instance of document object.
							The calling framework owns the object.
 */
	{
	// Create an OandX document, and return a pointer to it
	return COandXDocument::NewL(*this);
	}

⌨️ 快捷键说明

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