lib/misc/crc_hash.h
author "Tomas Zeman <tzeman@volny.cz>"
Wed, 16 Jan 2008 22:39:43 +0100
changeset 0 6f7a81934006
permissions -rw-r--r--
Imported vmailmgr-0.96.9

#ifndef CRC_HASH__H__
#define CRC_HASH__H__

#include "misc/crc32.h"

class crc_hash
{
public:
  unsigned operator()(const mystring& key) const
    {
      crc32_c crc;
      crc.update(key.c_str(), key.length());
      return crc;
    }
};

#endif