interpreter.h

来自「pl0文法编译器」· C头文件 代码 · 共 22 行

H
22
字号
#ifndef __INTERPRETER_H
#define __INTERPRETER_H

class Interpreter
{
public:
	Interpreter(PL0Compiler *p);

public:
	interpret();
	int base(int l);

public:
	vector<float> BBlock;

private:
	PL0Compiler *pl0Compiler;
	int base;
	int 
};

#endif

⌨️ 快捷键说明

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