blob: b1c3fdf47b4fe3efb8163fb99a5569dce9ed16b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef xbNode_h
#define xbNode_h
class xbNodeLink
{
public:
xbNodeLink(): nextNode_(0) {}
void AddNode(xbNodeLink* node);
xbNodeLink* GetNext() {return nextNode_;}
private:
xbNodeLink(const xbNodeLink&);
xbNodeLink& operator=(const xbNodeLink&);
private:
xbNodeLink* nextNode_;
};
#endif
|