lib/cdb++/datum.h
changeset 0 6f7a81934006
child 2 b3afb9f1e801
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/lib/cdb++/datum.h	Wed Jan 16 22:39:43 2008 +0100
@@ -0,0 +1,18 @@
+#ifndef DATUM__H__
+#define DATUM__H__
+
+#include "fdbuf/fdbuf.h"
+#include "mystring/mystring.h"
+
+struct datum 
+{
+  mystring key;
+  mystring data;
+
+  datum(const mystring& k, const mystring& d);
+  ~datum();
+};
+
+fdobuf& operator<<(fdobuf&, const datum&);
+
+#endif // DATUM__H__