📄 clabel.h
字号:
typedef struct LABEL_TAG
{
char str[MAX_NAME];
int integer;
} LAB, *PLABEL;
#define LABEL_INIT 100
#define LABEL_INC 25
class CLabel : public CObject
{
private:
PLABEL label;
short num_label; /*number of labels in the label list*/
short num_alloc_label; /*number of labels for which memory has been allocated*/
public:
CLabel();
~CLabel();
int SetLabel(struct data_entry *current, char *str_label);
char *GetLabel(struct data_entry *current);
int GetLabelInt(char *str);
int GetClassInt(int i);
char *GetClassStr(int i);
int NumClass();
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -