operation.h
来自「一个在linux下的shell的计算器」· C头文件 代码 · 共 37 行
H
37 行
/* * * * */#ifndef __OPERATION_H#define __OPERATION_H#include <string>#include "item.h"//////class Operation: public Item{ public: int code, arity; // Operation(int opc, std::string opn, int a); ~Operation(); // Virtual Methods Item *Clone(); std::string ToString() const;};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?