~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/table.h

  • Committer: Brian Aker
  • Date: 2011-01-12 06:45:23 UTC
  • mto: (2073.1.4 catalogs)
  • mto: This revision was merged to the branch mainline in revision 2080.
  • Revision ID: brian@tangent.org-20110112064523-rqhptaqbph22qmj1
Remove custom error.

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 {
33
32
namespace table {
34
33
 
35
34
typedef boost::shared_ptr <message::Table> shared_ptr;
36
 
typedef const message::Table& const_reference;
37
35
 
38
 
shared_ptr make_shared(identifier::Table::const_reference identifier, const std::string &engine_arg);
39
36
shared_ptr make_shared(const std::string &name_arg, const std::string &schema_arg, const std::string &engine_arg);
40
37
void init(drizzled::message::Table &arg, const std::string &name_arg, const std::string &schema_arg, const std::string &engine_arg);
41
38
void update(drizzled::message::Table &arg);