dialerapplication.cpp
来自「symbian 的打电话程序 可以实现安装sis」· C++ 代码 · 共 32 行
CPP
32 行
/* Copyright (c) 2004, Nokia. All rights reserved */
// INCLUDE FILES
#include "DialerDocument.h"
#include "DialerApplication.h"
// ============================ MEMBER FUNCTIONS ===============================
// -----------------------------------------------------------------------------
// CDialerApplication::CreateDocumentL()
// Creates CDialerDocument object.
// -----------------------------------------------------------------------------
//
CApaDocument* CDialerApplication::CreateDocumentL()
{
// Create an Dialer document, and return a pointer to it
CApaDocument* document = CDialerDocument::NewL( *this );
return document;
}
// -----------------------------------------------------------------------------
// CDialerApplication::AppDllUid()
// Returns application UID.
// -----------------------------------------------------------------------------
//
TUid CDialerApplication::AppDllUid() const
{
// Return the UID for the Dialer application
return KUidDialerApp;
}
// End of File
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?