rule.h

来自「人工智能课程里的动物程序」· C头文件 代码 · 共 58 行

H
58
字号
#if !defined(AFX_RULE_H__ACC73EC1_6DEB_11D7_8272_C39DDD7D9751__INCLUDED_)
#define AFX_RULE_H__ACC73EC1_6DEB_11D7_8272_C39DDD7D9751__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// Rule.h : header file
//


#include "Dbase.h"
/////////////////////////////////////////////////////////////////////////////
// CRule command target

class CRule : public CCmdTarget
{
	DECLARE_DYNCREATE(CRule)

	CRule();           // protected constructor used by dynamic creation

// Attributes
public:
   CDbase db;
// Operations
public:
   void GuiZe();
   bool IsTiger();
   bool IsBao();
   bool IsBanMa();
   bool IsChangJingLu();
   bool IsQiE();
   bool IsXinTianWeng();
   bool IsTuoNiao();
   virtual ~CRule();
// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CRule)
	//}}AFX_VIRTUAL

// Implementation
protected:
	

	// Generated message map functions
	//{{AFX_MSG(CRule)
		// NOTE - the ClassWizard will add and remove member functions here.
	//}}AFX_MSG

	DECLARE_MESSAGE_MAP()
};

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

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

#endif // !defined(AFX_RULE_H__ACC73EC1_6DEB_11D7_8272_C39DDD7D9751__INCLUDED_)

⌨️ 快捷键说明

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