📄 ahnendoc.h
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -