Xbase64 Class Library  3.1.2
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