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

📄 guiclock8_application.cpp

📁 基于Symbianos的手机开发与应用中的GUIClock源码
💻 CPP
字号:
//
// Copyright (c) 2000 Symbian Ltd.  All rights reserved.
//

////////////////////////////////////////////////////////////////////////
//
// Source file for the implementation of the 
// application class - CExampleApplication
//
////////////////////////////////////////////////////////////////////////

#include "GUIClock8.h"

const TUid KUidGUIClock = { 0X10008AD4 }; 

//             The function is called by the UI framework to ask for the
//             application's UID. The returned value is defined by the
//             constant KUidGUIClocke and must match the second value
//             defined in the project definition file.
// 
TUid CGUIClockApplication::AppDllUid() const
	{
	return KUidGUIClock;
	}

//             This function is called by the UI framework at
//             application start-up. It creates an instance of the
//             document class.
//
CApaDocument* CGUIClockApplication::CreateDocumentL()
	{
	return (static_cast<CApaDocument*>(CGUIClockDocument::NewL(*this))); 
	
	}

⌨️ 快捷键说明

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