~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/table.h

  • Committer: Brian Aker
  • Date: 2011-02-22 06:12:02 UTC
  • mfrom: (2190.1.6 drizzle-build)
  • Revision ID: brian@tangent.org-20110222061202-k03czxykqy4x9hjs
List update, header fixes, multiple symbols, and David deletes some code.

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>
 
29
#include <drizzled/identifier.h>
27
30
 
28
31
namespace drizzled {
29
32
namespace message {
30
33
namespace table {
31
34
 
32
35
typedef boost::shared_ptr <message::Table> shared_ptr;
 
36
typedef const message::Table& const_reference;
33
37
 
34
 
class Foo {
35
 
  shared_ptr foo;
36
 
};
 
38
shared_ptr make_shared(identifier::Table::const_reference identifier, const std::string &engine_arg);
 
39
shared_ptr make_shared(const std::string &name_arg, const std::string &schema_arg, const std::string &engine_arg);
 
40
void init(drizzled::message::Table &arg, const std::string &name_arg, const std::string &schema_arg, const std::string &engine_arg);
 
41
void update(drizzled::message::Table &arg);
37
42
 
38
43
} // namespace table
39
44
} // namespace message