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

📄 interpreter.h

📁 Standard Grammar Toolkit
💻 H
字号:
/*=========================================================
Interpreter.h
Copyright (C) 2001, ClearJump, All Rights Reserved

Interpreters converts parsing tree nodes to a representation,
which can be understood and processed by a processor.

=========================================================*/

#ifndef __Interpreter_h
#define __Interpreter_h

#include "cpobj.h"
#include <string>

using namespace std;

//DEFINES
//=======


//DATA TYPES AND FUNCTIONS
//========================
//---------------------------------------------------------
//	Interpreter
//  base class for interpreters
//---------------------------------------------------------
class Interpreter
{
public:
//attributes
	CClearParse *m_parser;

//methods
	Interpreter();
	virtual ~Interpreter();

	inline void set_parser( CClearParse *par ) { m_parser = par; }
	inline CClearParse *get_parser() const { return m_parser; }

protected:
//attributes

//methods

private:
//attributes

//methods
};



#endif //__Interpreter_h

⌨️ 快捷键说明

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