~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/table.h

  • Committer: Stewart Smith
  • Date: 2011-01-14 05:11:45 UTC
  • mto: (2086.1.3 build)
  • mto: This revision was merged to the branch mainline in revision 2087.
  • Revision ID: stewart@flamingspork.com-20110114051145-xiputq4lvmtct377
storage engine docs. add bit about some temp table only engines.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 
27
27
#include <boost/shared_ptr.hpp>
28
28
#include <drizzled/message/table.pb.h>
29
 
#include <drizzled/identifier.h>
30
29
 
31
30
namespace drizzled {
32
31
namespace message {
34
33
 
35
34
typedef boost::shared_ptr <message::Table> shared_ptr;
36
35
 
37
 
shared_ptr make_shared(identifier::Table::const_reference identifier, const std::string &engine_arg);
38
36
shared_ptr make_shared(const std::string &name_arg, const std::string &schema_arg, const std::string &engine_arg);
39
37
void init(drizzled::message::Table &arg, const std::string &name_arg, const std::string &schema_arg, const std::string &engine_arg);
40
38
void update(drizzled::message::Table &arg);