~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message.h

  • Committer: Brian Aker
  • Date: 2010-11-10 20:56:34 UTC
  • mfrom: (1921.1.2 trunk)
  • Revision ID: brian@tangent.org-20101110205634-u5rt2i4ibpyj20wh
Rollup patch around using shared_ptr with Table messages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
#include "drizzled/message/table.pb.h"
25
25
#include "drizzled/message/schema.pb.h"
 
26
#if 0
 
27
#include "drizzled/message/transaction.pb.h"
 
28
#include <google/protobuf/text_format.h>
 
29
#endif
26
30
 
27
31
#include <boost/shared_ptr.hpp>
28
32
 
43
47
 
44
48
typedef boost::shared_ptr<drizzled::message::Schema> SchemaPtr;
45
49
 
 
50
#if 0
 
51
std::ostream& operator<<(std::ostream& output, const message::Transaction &message);
 
52
std::ostream& operator<<(std::ostream& output, const message::Table &message);
 
53
#endif
 
54
 
 
55
 
46
56
} /* namespace message */
47
57
} /* namespace drizzled */
48
58