~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/schema.h

  • Committer: Brian Aker
  • Date: 2011-01-12 06:45:23 UTC
  • mto: (2073.1.4 catalogs)
  • mto: This revision was merged to the branch mainline in revision 2080.
  • Revision ID: brian@tangent.org-20110112064523-rqhptaqbph22qmj1
RemoveĀ customĀ error.

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