~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/table.h

  • Committer: Mark Atwood
  • Date: 2011-08-11 03:05:03 UTC
  • mfrom: (2385.1.12 refactor4)
  • Revision ID: me@mark.atwood.name-20110811030503-rp9xjihc5x3y0x4q
mergeĀ lp:~olafvdspek/drizzle/refactor4

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 */
20
20
 
21
21
 
22
 
#ifndef DRIZZLED_MESSAGE_TABLE_H
23
 
#define DRIZZLED_MESSAGE_TABLE_H
 
22
#pragma once
24
23
 
25
24
#include <uuid/uuid.h>
26
25
 
33
32
namespace table {
34
33
 
35
34
typedef boost::shared_ptr <message::Table> shared_ptr;
 
35
typedef const message::Table& const_reference;
36
36
 
37
 
shared_ptr make_shared(identifier::Table::const_reference identifier, const std::string &engine_arg);
 
37
shared_ptr make_shared(const identifier::Table& identifier, const std::string &engine_arg);
38
38
shared_ptr make_shared(const std::string &name_arg, const std::string &schema_arg, const std::string &engine_arg);
39
39
void init(drizzled::message::Table &arg, const std::string &name_arg, const std::string &schema_arg, const std::string &engine_arg);
40
40
void update(drizzled::message::Table &arg);
43
43
} // namespace message
44
44
} // namespace drizzled
45
45
 
46
 
#endif /* DRIZZLED_MESSAGE_TABLE_H */