msglist.h

来自「电梯仿真系统的实现」· C头文件 代码 · 共 24 行

H
24
字号
// MsgList.h: interface for the CMsgList class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_MSGLIST_H__F06E4CC3_F1B6_11D5_99FA_00E04CE2E086__INCLUDED_)
#define AFX_MSGLIST_H__F06E4CC3_F1B6_11D5_99FA_00E04CE2E086__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include <list>
using namespace std;

class CMsgList : public list<CMessage*>  
{
public:
	bool RemoveByPID(int pid);
	CMsgList();
	virtual ~CMsgList();

};

#endif // !defined(AFX_MSGLIST_H__F06E4CC3_F1B6_11D5_99FA_00E04CE2E086__INCLUDED_)

⌨️ 快捷键说明

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