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

📄 global.h

📁 一门课程的proj
💻 H
字号:
#pragma once

struct virable_item
{
	string name;
	int type;
	int address;
};
class global
{
public:
	global(void);
	~global(void);

public:
	void push(string, string, int, int);
	void getTop(attribute &);
	void clear();
	void popTop(attribute &);
public:
	vector<virable_item> v_table;
	int offset;
	stack<attribute> att;
	int sentence_num;
	int temp_num;
};

⌨️ 快捷键说明

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