oandxapplication.cpp

来自「Symbian OS C++ for Mobile Phones v3 Exam」· C++ 代码 · 共 31 行

CPP
31
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?