tcpex_application.cpp

来自「关于symbian uiq平台的例子不多」· C++ 代码 · 共 36 行

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