~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/ha_myisam.h

Remove PLUGIN and MODULES.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
#define PLUGIN_MYISAM_HA_MYISAM_H
19
19
 
20
20
#include <drizzled/cursor.h>
21
 
#include <mysys/thr_lock.h>
 
21
#include <drizzled/thr_lock.h>
22
22
 
23
23
/* class for the the myisam Cursor */
24
24
 
43
43
 public:
44
44
  ha_myisam(drizzled::plugin::StorageEngine &engine, TableShare &table_arg);
45
45
  ~ha_myisam() {}
46
 
  Cursor *clone(MEM_ROOT *mem_root);
 
46
  Cursor *clone(drizzled::memory::Root *mem_root);
47
47
  const char *index_type(uint32_t key_number);
48
48
  int index_init(uint32_t idx, bool sorted);
49
49
  int index_end();
50
 
  uint32_t index_flags(uint32_t inx, uint32_t part, bool all_parts) const;
51
50
  uint32_t checksum() const;
52
51
 
53
52
  int open(const char *name, int mode, uint32_t test_if_locked);