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

📄 tcpex_application.cpp

📁 关于symbian uiq平台的例子不多
💻 CPP
字号:
// TCPEx_CTCPExApplication.cpp
// ----------------------------------
//
// Copyright (c) 2002 Symbian Ltd.  All rights reserved.
//

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

#include "TCPEx.h"

const TUid KUidTCPEx = { 0x101F6163 }; 

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

//             This function is called by the UI framework at
//             application start-up. It creates an instance of the
//             document class.
//
CApaDocument* CTCPExApplication::CreateDocumentL()
	{
	return new (ELeave) CTCPExDocument(*this);
	}

⌨️ 快捷键说明

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