-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgrammer_analysis_dialog.h
37 lines (30 loc) · 1.26 KB
/
grammer_analysis_dialog.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#pragma once
/**************************************************************
* *
* Copyright (c) 2021 Gaojunfeng All rights reserved. *
* Version: 1.0 *
* Author: Gaojunfeng *
* *
* 最后修改日期:2021.04.30 *
* *
* 此类是显示语法分析结果的子对话框对应的类 *
* *
**************************************************************/
// grammer_analysis_dialog 对话框
class grammer_analysis_dialog : public CDialogEx
{
DECLARE_DYNAMIC(grammer_analysis_dialog)
public:
grammer_analysis_dialog(CWnd* pParent = nullptr); // 标准构造函数
virtual ~grammer_analysis_dialog();
// 对话框数据
#ifdef AFX_DESIGN_TIME
enum { IDD = IDD_GRAMMER_ANALYSIS };
#endif
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
DECLARE_MESSAGE_MAP()
public:
CEdit word_analysis_edit;
CTreeCtrl tree;
};