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

📄 common.h

📁 同样自己做的 还不错哦 Symbian的 上面没找到分类
💻 H
字号:
/*************************************************
FileName: 	Common.h
Author:		Nicholas
Date:		2008-01-15
History:
		
*************************************************/
#ifndef __COMMON_H__
#define __COMMON_H__
#define		MEMORY_FREE(a)	if(a){delete a; a=NULL;}
#include <e32std.h>
class MViewToHttpNotify
{
public:
	virtual void SendUrl(const TDesC& aType, const TDesC& aName,const TDesC& aPsw) = 0; 
};

class MHTTPEngineObserver
{
public:
	virtual void ResponseStatusL(TInt aStatusCode, const TDesC& aStatusText) = 0;

	virtual void ResponseReceivedL(const TDesC& aResponseBuffer) = 0;
};
class MHTTPToBook
{
public:
	virtual void ResPonseContent(const TDesC& aResponse) = 0;
	virtual void SetSelUpResult(const TDesC& aResult) = 0;
};
class MHttpToFunViewNotify
{
public:
	virtual void SetResponseType(const TDesC& aType) = 0;
};
class MHttpToLoginViewNotify
{
public:
	virtual void SetResponseType(const TDesC& aType,const TDesC& aResult) = 0;
};
class MBookToHttpNotify
{
public:
	virtual void DoSentBodyPost(const TDesC& aBody) = 0;
};
#endif //__COMMON_H__

⌨️ 快捷键说明

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