mini_pascaldoc.h

来自「一个用VC++开发的Pascal编译器. 包括词法分析 语法分析 语义分析 中」· C头文件 代码 · 共 64 行

H
64
字号
// mini_PascalDoc.h : interface of the CMini_PascalDoc class
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_MINI_PASCALDOC_H__D23BFA2F_E70E_4712_9F0C_3F033A588803__INCLUDED_)
#define AFX_MINI_PASCALDOC_H__D23BFA2F_E70E_4712_9F0C_3F033A588803__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include "DualityModel.h"
#include <vector>
using namespace std;


class CMini_PascalDoc : public CDocument
{
protected: // create from serialization only
	CMini_PascalDoc();
	DECLARE_DYNCREATE(CMini_PascalDoc)

// Attributes
public:
	CString	m_sourcestr ;			//源字符串
//	vector<DualityModel> m_dModel;	//二元式存储结构

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CMini_PascalDoc)
	public:
	virtual BOOL OnNewDocument();
	virtual void Serialize(CArchive& ar);
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~CMini_PascalDoc();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:

// Generated message map functions
protected:
	//{{AFX_MSG(CMini_PascalDoc)
		// NOTE - the ClassWizard will add and remove member functions here.
		//    DO NOT EDIT what you see in these blocks of generated code !
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

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

#endif // !defined(AFX_MINI_PASCALDOC_H__D23BFA2F_E70E_4712_9F0C_3F033A588803__INCLUDED_)

⌨️ 快捷键说明

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