?? msg.h
字號:
// msg.h : interface of the CMsg class
class CMsg : public CObject
{
protected:
DECLARE_DYNCREATE(CMsg)
public:
CMsg();
// Attributes
public:
CString m_strText; //這一次要發送的信息
BOOL m_bClose; //表示是否關閉的標志位
CStringList m_msgList;//信息列表
// Operations
public:
void Init();
// Implementation
public:
virtual ~CMsg();
virtual void Serialize(CArchive& ar); // overridden for document i/o
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
};
/////////////////////////////////////////////////////////////////////////////
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -