~message.~h

来自「基于JSP的网络聊天室系统,功能明了易懂」· ~H 代码 · 共 34 行

~H
34
字号
// Message.h: interface for the CMessage class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_MESSAGE_H__21FE1B53_6572_44F6_9007_4F5D396AE832__INCLUDED_)
#define AFX_MESSAGE_H__21FE1B53_6572_44F6_9007_4F5D396AE832__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class CMessage  
{
public:
	void Reset();
	CString m_strText;
	CString from;
	CString to;

	COLORREF color;
	BOOL secret;
	BOOL bGuoLv;
	CString type;
	WORD image;
public:
	CString InttoStr(int iNum);
	CString CMessageToNetPac();
	CMessage();
	virtual ~CMessage();

};

#endif // !defined(AFX_MESSAGE_H__21FE1B53_6572_44F6_9007_4F5D396AE832__INCLUDED_)

⌨️ 快捷键说明

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