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

📄 datanodedoc.h

📁 组态数据结点,工控数据结构编程学习资料,源码或其他好源码或编程学习资料
💻 H
字号:
// treeDoc.h : interface of the CDataNodeDoc class
//
/////////////////////////////////////////////////////////////////////////////
// forward declarations
class CWorkspaceTreeView;
class CDataNodeView;

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

// Attributes
public:
	// To simplify one view accessing the other, this document class
	// stores a pointer to each view, rather than relying on the collection
	// of generic view pointers that all documents maintain.
	//CWorkspaceTreeView * m_pTreeView;
	CDataNodeView * m_pListView;

	//CList <CProjectItem, CProjectItem&> m_ProjectList;

// Operations
public:
	//POSITION InsertData (CProjectItem &);

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CDataNodeDoc)
	public:
	virtual BOOL OnNewDocument();
	virtual void Serialize(CArchive& ar);
	virtual void DeleteContents();
	virtual BOOL OnOpenDocument(LPCTSTR lpszPathName);
	//}}AFX_VIRTUAL

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

protected:

// Generated message map functions
protected:
	//{{AFX_MSG(CDataNodeDoc)
		// NOTE - the ClassWizard will add and remove member functions here.
		//    DO NOT EDIT what you see in these blocks of generated code !
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

⌨️ 快捷键说明

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