demonsymapplication.cpp

来自「symbian下的一个例子」· C++ 代码 · 共 41 行

CPP
41
字号
/*
============================================================================
 Name        : DemonsymApplication.cpp
 Author      : huhao
 Version     :
 Copyright   : baidu
 Description : Main application class
============================================================================
*/

// INCLUDE FILES
#include "DemonsymDocument.h"
#include "DemonsymApplication.h"

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

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

// -----------------------------------------------------------------------------
// CDemonsymApplication::AppDllUid()
// Returns application UID
// -----------------------------------------------------------------------------
//
TUid CDemonsymApplication::AppDllUid() const
	{
	// Return the UID for the Demonsym application
	return KUidDemonsymApp;
	}

// End of File

⌨️ 快捷键说明

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