📄 commoninter.h
字号:
#ifndef COMMONINTER_H#define COMMONINTER_H#include "poly.h"#include "plist.h"#include "str.h"typedef int (*tyEquals) (poly, poly);typedef plist (*tyPlist) (poly);typedef int (*tyHashCode) (poly);typedef str (*tyToString) (poly);typedef struct commonInter *commonInter;typedef struct tyVft *tyVft;struct tyVft{ tyEquals equals; tyPlist getPlist; tyHashCode hashCode; tyToString toString;};struct commonInter{ tyVft vft;};tyVft getVft (poly data);#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -