ts1.0_inst_list.h
来自「使用stl技术,(还没看,是听说的)」· C头文件 代码 · 共 21 行
H
21 行
#ifndef _InstList_h
#define _InstList_h
#include "ts1.0_inst.h"
typedef class InstList {
public:
InstList();
~InstList();
int Size();
InstList& operator+=(InstPtr t);
void Validate();
void Invoke();
private:
InstPtr list;
int size;
int max;
} *InstListPtr;
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?