ahnendoc.h

来自「API经典入门」· C头文件 代码 · 共 43 行

H
43
字号
// ahnendoc.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CAhnenDoc document

#ifndef __AHNENDOC_H__
#define __AHNENDOC_H__

#include "treeset.h"

class CAhnenDoc : public CDocument
{
	DECLARE_SERIAL(CAhnenDoc)
protected:
	CAhnenDoc();			// protected constructor used by dynamic creation

// Attributes
public:
	CStringArray m_arrAhnentafel;
	CTreeSet m_treeSet;

// Operations
public:
void LoadAncestry (double ID, int Ahnen_Number = 1);

// Implementation
protected:
	virtual ~CAhnenDoc();
	virtual void Serialize(CArchive& ar);	// overridden for document i/o
	virtual	BOOL OnNewDocument();

	// Generated message map functions
protected:
	//{{AFX_MSG(CAhnenDoc)
		// NOTE - the ClassWizard will add and remove member functions here.
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

#endif

⌨️ 快捷键说明

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