~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/haildb/haildb_engine.h

  • Committer: Brian Aker
  • Date: 2010-10-22 23:33:58 UTC
  • mfrom: (1869.1.7 refactor)
  • Revision ID: brian@tangent.org-20101022233358-kmtrpm1yvmmyaame
Merge in overhaul to how cursor and table are handled. Cursor now only knows
about table, and will always have a table and engine reference.

This cleans up a number of ownership issues, the biggest being that it now
creates the space needed for the next big refactor in locks.

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
class HailDBCursor: public drizzled::Cursor
40
40
{
41
41
public:
42
 
  HailDBCursor(drizzled::plugin::StorageEngine &engine, drizzled::TableShare &table_arg);
 
42
  HailDBCursor(drizzled::plugin::StorageEngine &engine, drizzled::Table &table_arg);
43
43
  ~HailDBCursor()
44
44
  {}
45
45