Dandelion 1.1.1
A light-weight 3D builder for educational usage
|
链表节点类型的基类。 更多...
#include <linked_list.hpp>
Public 属性 | |
Node * | next_node |
Node * | prev_node |
链表节点类型的基类。
若需要构造 Node
类型的链表,则 Node
类型应该继承这个类, 形成 CRTP (Curiously Recurring Template Pattern) 结构,从而为 Node
类添加侵入式链表所需的指针成员。
Node | 链表数据类型 |