~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:09:04 UTC
  • mto: (2086.1.3 build)
  • mto: This revision was merged to the branch mainline in revision 2087.
  • Revision ID: stewart@flamingspork.com-20110114050904-a98kswwpqnpl413s
add a bit of a note on how variables docs should be expanded

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