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

📄 countdoc.h

📁 < MFC经典问答>>是微软类库经常遇到的问题
💻 H
字号:
// CountDoc.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CCountDoc document

class CCountDoc : public CDocument
{
protected:
	CCountDoc();           // protected constructor used by dynamic creation
	DECLARE_DYNCREATE(CCountDoc)

// Attributes
public:
	int m_nCount;

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CCountDoc)
	public:
	virtual void Serialize(CArchive& ar);   // overridden for document i/o
	protected:
	virtual BOOL OnNewDocument();
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~CCountDoc();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

	// Generated message map functions
public:
	//{{AFX_MSG(CCountDoc)
	afx_msg void OnCountIncrement();
	afx_msg void OnCountDecrement();
	afx_msg void OnCountReset();
	afx_msg void OnUpdateCountReset(CCmdUI* pCmdUI);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

⌨️ 快捷键说明

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