Xbase64 Class Library
3.1.2
xbase64
xbnode.h
Go to the documentation of this file.
1
#ifndef xbNode_h
2
#define xbNode_h
3
4
class
xbNodeLink
5
{
6
public
:
7
xbNodeLink
(): nextNode_(0) {}
8
void
AddNode
(
xbNodeLink
* node);
9
xbNodeLink
*
GetNext
() {
return
nextNode_;}
10
11
private
:
12
xbNodeLink
(
const
xbNodeLink
&);
13
xbNodeLink
& operator=(
const
xbNodeLink
&);
14
15
private
:
16
xbNodeLink
* nextNode_;
17
};
18
19
#endif
xbNodeLink
xbNtxNodeLink struct
Definition:
xbnode.h:4
xbNodeLink::GetNext
xbNodeLink * GetNext()
Definition:
xbnode.h:9
xbNodeLink::AddNode
void AddNode(xbNodeLink *node)
Definition:
xbnode.cpp:3
xbNodeLink::xbNodeLink
xbNodeLink()
Definition:
xbnode.h:7
Generated by
1.8.14