cntritem.h

来自「SEEDDEC6416 USB通信程序」· C头文件 代码 · 共 54 行

H
54
字号
// CntrItem.h : interface of the CSEEDDEC2XXXCntrItem class
//

#if !defined(AFX_CNTRITEM_H__A901CA55_40C6_42D4_B6E8_5EAFACA8B7F0__INCLUDED_)
#define AFX_CNTRITEM_H__A901CA55_40C6_42D4_B6E8_5EAFACA8B7F0__INCLUDED_

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

class CSEEDDEC2XXXDoc;
class CSEEDDEC2XXXView;

class CSEEDDEC2XXXCntrItem : public CRichEditCntrItem
{
	DECLARE_SERIAL(CSEEDDEC2XXXCntrItem)

// Constructors
public:
	CSEEDDEC2XXXCntrItem(REOBJECT* preo = NULL, CSEEDDEC2XXXDoc* pContainer = NULL);
		// Note: pContainer is allowed to be NULL to enable IMPLEMENT_SERIALIZE.
		//  IMPLEMENT_SERIALIZE requires the class have a constructor with
		//  zero arguments.  Normally, OLE items are constructed with a
		//  non-NULL document pointer.

// Attributes
public:
	CSEEDDEC2XXXDoc* GetDocument()
		{ return (CSEEDDEC2XXXDoc*)CRichEditCntrItem::GetDocument(); }
	CSEEDDEC2XXXView* GetActiveView()
		{ return (CSEEDDEC2XXXView*)CRichEditCntrItem::GetActiveView(); }

	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CSEEDDEC2XXXCntrItem)
	public:
	protected:
	//}}AFX_VIRTUAL

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

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

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_CNTRITEM_H__A901CA55_40C6_42D4_B6E8_5EAFACA8B7F0__INCLUDED_)

⌨️ 快捷键说明

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