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

📄 welcome_application.cpp

📁 如题 就是 这东西 为什么非要我 说到 20个 字 呢 看看这回 够 不
💻 CPP
字号:
// welcome_Application.cpp
//
// Copyright (c) 1999-2007 Symbian Software Ltd.  All rights reserved.
//
// $Change: 937687 $

////////////////////////////////////////////////////////////////////////
//
// Source file for the implementation of the 
// application class - CExampleApplication
//
////////////////////////////////////////////////////////////////////////

// PROJECT HEADERS
#include "Welcome.h"

const TUid KUidWelcome = { 0X10009388 }; 

// The function is called by the UI framework to ask for the
// application's UID. The returned value is defined by the
// constant KUidWelcome and must match the second value
// defined in the project definition file.
// 
TUid CExampleApplication::AppDllUid() const
    {
    return KUidWelcome;
    }

// This function is called by the UI framework at
// application start-up. It creates an instance of the
// document class.
//
CApaDocument* CExampleApplication::CreateDocumentL()
    {
    return new(ELeave) CExampleDocument(*this);
    }

⌨️ 快捷键说明

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