~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/key_map.h

  • Committer: devananda
  • Date: 2009-07-01 17:38:47 UTC
  • mto: (1093.1.7 captain)
  • mto: This revision was merged to the branch mainline in revision 1095.
  • Revision ID: devananda.vdv@gmail.com-20090701173847-3n3mbtessg5ff35e
refactored function/benchmark into plugin/benchmark

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef DRIZZLED_KEY_MAP_H
21
21
#define DRIZZLED_KEY_MAP_H
22
22
 
 
23
#include <drizzled/global.h>
23
24
#include <drizzled/definitions.h>
24
25
 
25
26
#include <bitset>
26
27
 
27
 
namespace drizzled
28
 
{
29
 
 
30
28
/* Used for finding keys */
31
29
#if MAX_INDEXES <= 64
32
30
typedef std::bitset<72> key_map;
43
41
void set_prefix(key_map& map, const uint32_t n);
44
42
void key_map_subtract(key_map& map1, key_map& map2);
45
43
 
46
 
} /* namespace drizzled */
47
 
 
48
 
#endif /* DRIZZLED_KEY_MAP_H */
 
44
#endif