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

📄 osm_assignmentapplication.cpp

📁 an addition application in symbian using Carbide C++
💻 CPP
字号:
/*
 ============================================================================
 Name		: OSM_assignmentApplication.cpp
 Author	  : Salik iftikhar
 Copyright   : Assignment
 Description : Main application class
 ============================================================================
 */

// INCLUDE FILES
#include "OSM_assignment.hrh"
#include "OSM_assignmentDocument.h"
#include "OSM_assignmentApplication.h"

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

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

// -----------------------------------------------------------------------------
// COSM_assignmentApplication::AppDllUid()
// Returns application UID
// -----------------------------------------------------------------------------
//
TUid COSM_assignmentApplication::AppDllUid() const
	{
	// Return the UID for the OSM_assignment application
	return KUidOSM_assignmentApp;
	}

// End of File

⌨️ 快捷键说明

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