~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/schema.h

  • Committer: Olaf van der Spek
  • Date: 2011-03-06 15:49:49 UTC
  • mto: (2226.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 2227.
  • Revision ID: olafvdspek@gmail.com-20110306154949-zzso0l15mbwi60xb
Provide drizzle/drizzle.h

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
 
28
30
namespace drizzled {
29
31
namespace message {
30
32
namespace schema {
31
33
 
 
34
typedef message::Schema value_type;
32
35
typedef boost::shared_ptr <message::Schema> shared_ptr;
 
36
typedef const message::Schema const_reference;
 
37
 
 
38
shared_ptr make_shared(identifier::Schema::const_reference identifier);
 
39
shared_ptr make_shared(const std::string &name_arg);
 
40
void init(drizzled::message::Schema &arg, const std::string &name_arg);
 
41
 
33
42
 
34
43
} // namespace schema
35
44
} // namespace message