| author | "Tomas Zeman <tzeman@volny.cz>" |
| Sun, 20 Jan 2008 00:22:09 +0100 | |
| changeset 2 | b3afb9f1e801 |
| parent 0 | 6f7a81934006 |
| permissions | -rw-r--r-- |
| 2 | 1 |
/* $Id: datum.h 616 2005-08-19 20:11:01Z bruce $ */ |
| 0 | 2 |
#ifndef DATUM__H__ |
3 |
#define DATUM__H__ |
|
4 |
||
5 |
#include "fdbuf/fdbuf.h" |
|
6 |
#include "mystring/mystring.h" |
|
7 |
||
8 |
struct datum |
|
9 |
{
|
|
10 |
mystring key; |
|
11 |
mystring data; |
|
12 |
||
13 |
datum(const mystring& k, const mystring& d); |
|
14 |
~datum(); |
|
15 |
}; |
|
16 |
||
17 |
fdobuf& operator<<(fdobuf&, const datum&); |
|
18 |
||
19 |
#endif // DATUM__H__ |