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

📄 hellotestapplication.cpp

📁 symbian os下的helloworld
💻 CPP
字号:
/*
============================================================================
 Name		: hellotestApplication.cpp
 Author	  : 
 Copyright   : Your copyright notice
 Description : Main application class
============================================================================
*/

// INCLUDE FILES
#include "hellotest.hrh"
#include "hellotestDocument.h"
#include "hellotestApplication.h"

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

// -----------------------------------------------------------------------------
// ChellotestApplication::CreateDocumentL()
// Creates CApaDocument object
// -----------------------------------------------------------------------------
//
CApaDocument* ChellotestApplication::CreateDocumentL()
	{
	// Create an hellotest document, and return a pointer to it
	return (static_cast<CApaDocument*>
					( ChellotestDocument::NewL( *this ) ) );
	}

// -----------------------------------------------------------------------------
// ChellotestApplication::AppDllUid()
// Returns application UID
// -----------------------------------------------------------------------------
//
TUid ChellotestApplication::AppDllUid() const
	{
	// Return the UID for the hellotest application
	return KUidhellotestApp;
	}

// End of File

⌨️ 快捷键说明

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