~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message.h

  • Committer: Brian Aker
  • Date: 2010-10-24 01:34:39 UTC
  • mto: This revision was merged to the branch mainline in revision 1875.
  • Revision ID: brian@tangent.org-20101024013439-w9r8qtmt5ihnqtkd
Encapsulate table_name from table_list.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#ifndef DRIZZLED_MESSAGE_H
22
22
#define DRIZZLED_MESSAGE_H
23
23
 
24
 
#include "drizzled/message/table.h"
25
 
#include "drizzled/message/schema.h"
26
 
#if 0
27
 
#include "drizzled/message/transaction.pb.h"
28
 
#include <google/protobuf/text_format.h>
29
 
#endif
 
24
#include "drizzled/message/table.pb.h"
 
25
#include "drizzled/message/schema.pb.h"
30
26
 
31
27
#include <boost/shared_ptr.hpp>
32
28
 
39
35
void update(drizzled::message::Schema &arg);
40
36
void update(drizzled::message::Table &arg);
41
37
 
42
 
const std::string &type(drizzled::message::Table::Field::FieldType type);
43
 
const std::string &type(drizzled::message::Table::ForeignKeyConstraint::ForeignKeyOption type);
44
 
const std::string &type(bool type);
45
 
const std::string &type(drizzled::message::Table::Index::IndexType type);
46
 
const std::string &type(drizzled::message::Table::ForeignKeyConstraint::ForeignKeyMatchOption type);
47
 
 
48
 
#if 0
49
 
std::ostream& operator<<(std::ostream& output, const message::Transaction &message);
50
 
std::ostream& operator<<(std::ostream& output, const message::Table &message);
51
 
#endif
52
 
 
 
38
typedef boost::shared_ptr<drizzled::message::Schema> SchemaPtr;
53
39
 
54
40
} /* namespace message */
55
41
} /* namespace drizzled */