⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 stdafx.h

📁 一门课程的proj
💻 H
字号:
// stdafx.h : 标准系统包含文件的包含文件,
// 或是常用但不常更改的项目特定的包含文件
//

#pragma once

#include <tchar.h>
#include <stdlib.h>
#include <string.h>
#include <fstream>
#include <iostream>
#include <sstream> 
using namespace std;

#include <vector>
#include <queue>
#include <stack>
#include <algorithm>
#include <string>
#include "symbol_mapping.h"
#include "FileReader.h"
#include "creation.h"
#include "PhaseSymbol.h"
#include "LRPrefix.h"
#include "status.h"
#include "LRTable.h"
#include "LRPrintTable.h"
#include "Analyze.h"
#include "attribute.h"
#include "global.h"
#include "code.h"
#include "action.h"

extern ofstream record;
extern ofstream output_code;
extern vector<creation> _creation;
extern int creation_num;									//产生式个数
extern vector<status> _status;
extern int status_num;										//LR1状态个数
extern class PhaseSymbol ps;								//所有的非终结符和终结符集合
extern class LRPrintTable _table;							//LR1分析表
extern class symbol_mapping _sm;							//符号映射表
extern int symbol_num;										//符号总数量
extern ofstream lrTable_output;
extern global _global;

// TODO: 在此处引用程序要求的附加头文件

⌨️ 快捷键说明

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