📄 global.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 + -