~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/definition/table.h

  • Committer: Brian Aker
  • Date: 2010-11-19 03:03:40 UTC
  • mto: (1945.2.1 quick)
  • mto: This revision was merged to the branch mainline in revision 1944.
  • Revision ID: brian@tangent.org-20101119030340-vw9l27v75r317o55
Added generator for table_definition cache. Now no one can touch the guts :)

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
class TableShare
62
62
{
63
63
  typedef std::vector<std::string> StringVector;
 
64
 
64
65
public:
65
66
  typedef boost::shared_ptr<TableShare> shared_ptr;
 
67
  typedef std::vector <shared_ptr> vector;
66
68
 
67
69
  TableShare(TableIdentifier::Type type_arg);
68
70