~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/schema.h

  • Committer: Andrew Hutchings
  • Date: 2011-01-04 20:16:55 UTC
  • mto: This revision was merged to the branch mainline in revision 2057.
  • Revision ID: andrew@linuxjedi.co.uk-20110104201655-fm6splh5wqpv8wnb
Revert join_cache buffer cleanup, causes valgrind problems and as much as I don't like it I think the current implementation seems to work

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
 
 
37
 
shared_ptr make_shared(identifier::Schema::const_reference identifier);
38
 
shared_ptr make_shared(const std::string &name_arg);
39
 
void init(drizzled::message::Schema &arg, const std::string &name_arg);
40
 
 
41
33
 
42
34
} // namespace schema
43
35
} // namespace message