?? oandxapplication.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 + -