ipcdoc.h

来自「TCP/IP and Windows 95. Sources from DDJ 」· C头文件 代码 · 共 37 行

H
37
字号
// ipcdoc.h : interface of the CIpcDoc class
//
/////////////////////////////////////////////////////////////////////////////

class CIpcDoc : public CDocument
{
protected: // create from serialization only
	CIpcDoc();
	DECLARE_DYNCREATE(CIpcDoc)

// Attributes
public:
// Operations
public:

// Implementation
public:
	virtual ~CIpcDoc();
	virtual void Serialize(CArchive& ar);   // overridden for document i/o
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:
	virtual BOOL OnNewDocument();

// Generated message map functions
protected:
	//{{AFX_MSG(CIpcDoc)
	afx_msg void OnEnter();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

/////////////////////////////////////////////////////////////////////////////

⌨️ 快捷键说明

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