00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #pragma once
00023
00024 #include <uuid/uuid.h>
00025
00026 #include <boost/shared_ptr.hpp>
00027 #include <drizzled/message/table.pb.h>
00028 #include <drizzled/identifier.h>
00029
00030 namespace drizzled {
00031 namespace message {
00032 namespace table {
00033
00034 typedef boost::shared_ptr <message::Table> shared_ptr;
00035 typedef const message::Table& const_reference;
00036
00037 shared_ptr make_shared(identifier::Table::const_reference identifier, const std::string &engine_arg);
00038 shared_ptr make_shared(const std::string &name_arg, const std::string &schema_arg, const std::string &engine_arg);
00039 void init(drizzled::message::Table &arg, const std::string &name_arg, const std::string &schema_arg, const std::string &engine_arg);
00040 void update(drizzled::message::Table &arg);
00041
00042 }
00043 }
00044 }
00045