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

📄 settingexampleapplication.cpp

📁 基于 symbian OS的屏幕设置经典程序,很不错,欢迎下载学习
💻 CPP
字号:
/*
 * ============================================================================
 *  Name     : CSettingExampleApplication from SettingExampleApplication.cpp
 *  Part of  : SettingExample
 *  Created  : 29/05/2006 by Forum Nokia
 *  Version  : 2.0
 *  Copyright: Forum Nokia
 * ============================================================================
 */
 
#include "SettingExampleDocument.h"
#include "SettingExampleApplication.h"

// local constants
#ifdef __SERIES60_3X__
static const TUid KUidSettingExampleApp = {0xE0005b95}; 
#else
static const TUid KUidSettingExampleApp = {0x10005b95}; 
#endif

CApaDocument* CSettingExampleApplication::CreateDocumentL()
    {  
    // Create an SettingExample document, and return a pointer to it
    CApaDocument* document = CSettingExampleDocument::NewL(*this);
    return document;
    }

TUid CSettingExampleApplication::AppDllUid() const
    {
    // Return the UID for the SettingExample application
    return KUidSettingExampleApp;
    }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -