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

📄 qiqiweatherapplication.cpp

📁 手机天气预报系统
💻 CPP
字号:
/*
 ============================================================================
 Name		: QiQiWeatherApplication.cpp
 Author	  : Richie Chyi
 Copyright   : Copyright?2008
 Description : Main application class
 ============================================================================
 */

// INCLUDE FILES
#include "QiQiWeather.hrh"
#include "QiQiWeatherDocument.h"
#include "QiQiWeatherApplication.h"

// ============================ MEMBER FUNCTIONS ===============================

// -----------------------------------------------------------------------------
// CQiQiWeatherApplication::CreateDocumentL()
// Creates CApaDocument object
// -----------------------------------------------------------------------------
//
CApaDocument* CQiQiWeatherApplication::CreateDocumentL()
	{
	// Create an QiQiWeather document, and return a pointer to it
	return CQiQiWeatherDocument::NewL(*this);
	}

// -----------------------------------------------------------------------------
// CQiQiWeatherApplication::AppDllUid()
// Returns application UID
// -----------------------------------------------------------------------------
//
TUid CQiQiWeatherApplication::AppDllUid() const
	{
	// Return the UID for the QiQiWeather application
	return KUidQiQiWeatherApp;
	}

// End of File

⌨️ 快捷键说明

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