clipsdlg.h
来自「专家系统例子,内核是clips,很有参考性的工具采用visual c」· C头文件 代码 · 共 58 行
H
58 行
// lipsDlg.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// ClipsDlg dialog
class ClipsDlg : public CDialog
{
private:
CCLIPSWrap* m_pClips;
CStringArray m_Agenda;
CStringArray m_Display;
CStringArray m_Error;
CStringArray m_Warning;
// Construction
public:
ClipsDlg(CWnd* pParent = NULL); // standard constructor
~ClipsDlg();
// Dialog Data
//{{AFX_DATA(ClipsDlg)
enum { IDD = IDD_DIALOG1 };
CButton m_bCLP;
CListBox m_lbWarning;
CListBox m_lbDisplay;
CListBox m_lbError;
CListBox m_lbAgenda;
CButton m_bRun;
CButton m_bClear;
CString m_eFile;
//}}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(ClipsDlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
//{{AFX_MSG(ClipsDlg)
afx_msg void OnBrowse();
afx_msg void OnClear();
afx_msg void OnChangeClpFile();
afx_msg void OnTimer(UINT nIDEvent);
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
virtual BOOL OnInitDialog();
afx_msg void OnRunBatch();
afx_msg void OnRunCLP();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?