preinstall4application.cpp

来自「在Garbide c++中建立的Symbian程序。实现了安装后自动调用JAVA」· C++ 代码 · 共 40 行

CPP
40
字号
/*
 ============================================================================
 Name		: PreInstall4Application.cpp
 Author	  : 
 Copyright   : 35
 Description : Main application class
 ============================================================================
 */

// INCLUDE FILES
#include "PreInstall4.hrh"
#include "PreInstall4Document.h"
#include "PreInstall4Application.h"

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

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

// -----------------------------------------------------------------------------
// CPreInstall4Application::AppDllUid()
// Returns application UID
// -----------------------------------------------------------------------------
//
TUid CPreInstall4Application::AppDllUid() const
	{
	// Return the UID for the PreInstall4 application
	return KUidPreInstall4App;
	}

// End of File

⌨️ 快捷键说明

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