~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/table.h

  • Committer: Brian Aker
  • Date: 2011-01-17 04:15:23 UTC
  • mto: (2088.1.3 merge)
  • mto: This revision was merged to the branch mainline in revision 2089.
  • Revision ID: brian@gir-3-20110117041523-o9ex94kfz1a6iqyw
Modify TableIdentifier to fit with the rest of the identifiers.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#ifndef DRIZZLED_MESSAGE_TABLE_H
23
23
#define DRIZZLED_MESSAGE_TABLE_H
24
24
 
 
25
#include <uuid/uuid.h>
 
26
 
25
27
#include <boost/shared_ptr.hpp>
26
28
#include <drizzled/message/table.pb.h>
27
29
 
31
33
 
32
34
typedef boost::shared_ptr <message::Table> shared_ptr;
33
35
 
34
 
class Foo {
35
 
  shared_ptr foo;
36
 
};
 
36
shared_ptr make_shared(const std::string &name_arg, const std::string &schema_arg, const std::string &engine_arg);
 
37
void init(drizzled::message::Table &arg, const std::string &name_arg, const std::string &schema_arg, const std::string &engine_arg);
 
38
void update(drizzled::message::Table &arg);
37
39
 
38
40
} // namespace table
39
41
} // namespace message