qiqiweatherapplication.cpp

来自「手机天气预报系统」· C++ 代码 · 共 40 行

CPP
40
字号
/*
 ============================================================================
 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 + =
减小字号Ctrl + -
显示快捷键?