21 lines
225 B
Markdown
21 lines
225 B
Markdown
# GetNext
|
||
|
||
Gets the pointer of the next node.
|
||
|
||
```
|
||
CTreeNode* GetNext(
|
||
CTreeNode* node // node
|
||
)
|
||
|
||
```
|
||
|
||
Parameters
|
||
|
||
node
|
||
|
||
[in] Node of the search start.
|
||
|
||
Return Value
|
||
|
||
Pointer of the next node.
|