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