~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/schema.h

  • Committer: Lee Bieber
  • Date: 2011-01-24 17:20:08 UTC
  • mfrom: (2107.2.1 trunk-bug-703913)
  • mto: This revision was merged to the branch mainline in revision 2109.
  • Revision ID: kalebral@gmail.com-20110124172008-y5maihyoyu7gn18p
Merge Andrew - fix bug 703913: some support-files should be dropped

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#include <boost/shared_ptr.hpp>
26
26
#include <drizzled/message/schema.pb.h>
27
27
 
28
 
#include <drizzled/identifier.h>
29
 
 
30
28
namespace drizzled {
31
29
namespace message {
32
30
namespace schema {
33
31
 
34
32
typedef boost::shared_ptr <message::Schema> shared_ptr;
35
 
typedef const message::Schema const_reference;
36
33
 
37
 
shared_ptr make_shared(identifier::Schema::const_reference identifier);
38
34
shared_ptr make_shared(const std::string &name_arg);
39
35
void init(drizzled::message::Schema &arg, const std::string &name_arg);
40
36