summaryrefslogtreecommitdiff
path: root/xbase64/xbnode.h
diff options
context:
space:
mode:
Diffstat (limited to 'xbase64/xbnode.h')
-rwxr-xr-xxbase64/xbnode.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/xbase64/xbnode.h b/xbase64/xbnode.h
new file mode 100755
index 0000000..b1c3fdf
--- /dev/null
+++ b/xbase64/xbnode.h
@@ -0,0 +1,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