~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table.h

  • Committer: Brian Aker
  • Date: 2010-10-14 18:32:09 UTC
  • mto: This revision was merged to the branch mainline in revision 1855.
  • Revision ID: brian@tangent.org-20101014183209-884iivwn1og2v3yd
Committing refactor of table out (this is part of the concurrency work).

Show diffs side-by-side

added added

removed removed

Lines of Context:
639
639
  }
640
640
};
641
641
 
642
 
class TemporaryTable : public Table
643
 
{
644
 
public:
645
 
  TemporaryTable() :
646
 
    Table()
647
 
  {
648
 
  }
649
 
 
650
 
  ~TemporaryTable()
651
 
  {
652
 
  }
653
 
};
654
 
 
655
642
/**
656
643
 * @class
657
644
 *  ForeignKeyInfo
873
860
 
874
861
} /* namespace drizzled */
875
862
 
876
 
#include "drizzled/table_share_instance.h"
 
863
#include "drizzled/table/instance.h"
877
864
 
878
865
#endif /* DRIZZLED_TABLE_H */