passwordapplication.cpp
来自「symbian S60 密码本源代码 主要用于保存用户网站,BBS网址,用户名以」· C++ 代码 · 共 27 行
CPP
27 行
/* ====================================================================
* File: PasswordApplication.cpp
* Created: 11/06/07
* Author:
* Copyright (c): , All rights reserved
* ==================================================================== */
#include "PasswordDocument.h"
#include "PasswordApplication.h"
// UID for the application, this should correspond to the uid defined in the mmp file
static const TUid KUidPasswordApp = {0x2936360A};
CApaDocument* CPasswordApplication::CreateDocumentL()
{
// Create an Password document, and return a pointer to it
CApaDocument* document = CPasswordDocument::NewL(*this);
return document;
}
TUid CPasswordApplication::AppDllUid() const
{
// Return the UID for the Password application
return KUidPasswordApp;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?