~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/table.h

  • Committer: Monty Taylor
  • Date: 2011-02-14 20:25:28 UTC
  • mto: (2168.1.3 build)
  • mto: This revision was merged to the branch mainline in revision 2169.
  • Revision ID: mordred@inaugust.com-20110214202528-wfb2a5h51ntbl5ct
Fix daemonize c++ patch.

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