📄 didlist.h
字号:
#ifndef __DIDLIST_H#define __DIDLIST_H#include <dlist/dlist.h>typedef unsigned long dword;class DIdElement : public DElement{ private: dword id; public: DIdElement(dword _id) : DElement() { id = _id; } dword Id(void) const { return id; }};class DIdList : public DSortList{ public: DIdList(void) : DSortList() {} virtual int cmp(DElement* e, DElement* nxt) const { return ((DIdElement*)e)->Id() < ((DIdElement*)nxt)->Id(); } DIdElement* Get(dword);};#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -