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

📄 passwordapplication.cpp

📁 symbian S60 密码本源代码 主要用于保存用户网站,BBS网址,用户名以及密码
💻 CPP
字号:
/* ====================================================================
 * 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -