osm_assignmentapplication.cpp

来自「an addition application in symbian using」· C++ 代码 · 共 40 行

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