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

📄 emailtransport.h

📁 Symbian OS C++ for Mobile Phones Volume 3 源码
💻 H
字号:
// Copyright (c) 2004 - 2007, Symbian Software Ltd. All rights reserved.

/**
	The email transport is an extension of the body text
	transport, which adds a subject line to sent messages.
 */

#ifndef EMAILTRANSPORT_H
#define EMAILTRANSPORT_H

#include "bodytexttransport.h"


class CEmailTransport : public CBodyTextTransport
/**
	Transport sends payloads to a remote device over email.
 */
	{
public:
	static CEmailTransport* NewL(TAny* aTransportCreateInfo);
	static CEmailTransport* New2L(MTransportObserver& aObserver, const TDesC& aAddress, TBool aInitListen);

private:
	CEmailTransport(MTransportObserver& aObserver);
	
	// implement CMessageTransport
	virtual TBool ShouldUseReceivedMtmUid(TUid aMtmUid) const;
	
	// override CMessageTransport
	virtual void DoBuildMessageL();
	};

#endif	// #ifndef EMAILTRANSPORT_H

⌨️ 快捷键说明

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