📄 shareclass.h
字号:
#if!defined(SHARECLASS_H_)
#define SHARECLASS_H_
//the struct of cut dot
struct WCutRecord
{
int iColumn; //the number of column where tha cute takes place
int iCuts; //the number of the cuts
char** cpCut; //content
WCutRecord* next; //the next cutsets
};
//the class of the Positive of X to D
class PosD
{
public:
int PosNum; //the attribute number
int* PosSet; //the attribute sets
public:
PosD(int i);
void DeletePos();
bool compare(PosD* right);
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -