symboltable.h

来自「一个在linux下的shell的计算器」· C头文件 代码 · 共 24 行

H
24
字号
/* * * * */#ifndef __SYMBOLTABLE_H#define __SYMBOLTABLE_H#include <string>#include "itemlist.h"class SymbolTable: public ItemList{ public:  void Store(Item *p, std::string s);  Item *Retrieve(std::string s);  void Delete(std::string s);};#endif

⌨️ 快捷键说明

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