itemlist.h
来自「一个在linux下的shell的计算器」· C头文件 代码 · 共 40 行
H
40 行
/* * * * */#ifndef __ITEMLIST_H#define __ITEMLIST_H#include "item.h"class ItemList: public Item{ private: Item *first, *last; public: ItemList(); ~ItemList(); // Item *Clone(); std::string ToString() const; void Clear(); void Add(Item *p); void Remove(Item *p); Item *First(); Item *Last(); int Length();};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?