lib/cdb++/datum.h
changeset 0 6f7a81934006
child 2 b3afb9f1e801
equal deleted inserted replaced
-1:000000000000 0:6f7a81934006
       
     1 #ifndef DATUM__H__
       
     2 #define DATUM__H__
       
     3 
       
     4 #include "fdbuf/fdbuf.h"
       
     5 #include "mystring/mystring.h"
       
     6 
       
     7 struct datum 
       
     8 {
       
     9   mystring key;
       
    10   mystring data;
       
    11 
       
    12   datum(const mystring& k, const mystring& d);
       
    13   ~datum();
       
    14 };
       
    15 
       
    16 fdobuf& operator<<(fdobuf&, const datum&);
       
    17 
       
    18 #endif // DATUM__H__