| author | "Tomas Zeman <tzeman@volny.cz>" |
| Wed, 16 Jan 2008 22:39:43 +0100 | |
| changeset 0 | 6f7a81934006 |
| permissions | -rw-r--r-- |
#ifndef VMAILMGR__LIST_TABLE__H__ #define VMAILMGR__LIST_TABLE__H__ #include "misc/hash_table.h" #include "misc/crc_hash.h" #include "mystring/mystring.h" class list_table : public hash_table<bool,hash_node<bool>,crc_hash> { bool valid; public: list_table(const mystring& filename); ~list_table(); bool operator!() const { return !valid; } }; #endif