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, 0 insertions, 19 deletions
diff --git a/xbase64/xbnode.h b/xbase64/xbnode.h
deleted file mode 100755
index b1c3fdf..0000000
--- a/xbase64/xbnode.h
+++ /dev/null
@@ -1,19 +0,0 @@
-#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