Xbase64 Class Library  3.1.2
xbnode.h
Go to the documentation of this file.
00001 #ifndef xbNode_h
00002 #define xbNode_h
00003 
00004 class xbNodeLink
00005 {
00006   public:
00007     xbNodeLink(): nextNode_(0) {}
00008     void AddNode(xbNodeLink* node);
00009     xbNodeLink* GetNext() {return nextNode_;}
00010 
00011   private:
00012     xbNodeLink(const xbNodeLink&);
00013     xbNodeLink& operator=(const xbNodeLink&);
00014 
00015   private:
00016     xbNodeLink* nextNode_;
00017 };
00018 
00019 #endif