~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/table.h

  • Committer: Olaf van der Spek
  • Date: 2011-03-23 23:52:54 UTC
  • mto: This revision was merged to the branch mainline in revision 2251.
  • Revision ID: olafvdspek@gmail.com-20110323235254-g3q0c1feajno7edr
 Remove const_reference and reference from identifier::Table

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
typedef boost::shared_ptr <message::Table> shared_ptr;
35
35
typedef const message::Table& const_reference;
36
36
 
37
 
shared_ptr make_shared(identifier::Table::const_reference identifier, const std::string &engine_arg);
 
37
shared_ptr make_shared(const identifier::Table& identifier, const std::string &engine_arg);
38
38
shared_ptr make_shared(const std::string &name_arg, const std::string &schema_arg, const std::string &engine_arg);
39
39
void init(drizzled::message::Table &arg, const std::string &name_arg, const std::string &schema_arg, const std::string &engine_arg);
40
40
void update(drizzled::message::Table &arg);