~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/unireg.h

  • Committer: Jay Pipes
  • Date: 2009-04-10 05:31:39 UTC
  • mto: (971.1.47 mordred)
  • mto: This revision was merged to the branch mainline in revision 990.
  • Revision ID: jpipes@serialcoder-20090410053139-beat1rbcopkcgc4n
Changes libserialize to libdrizzledmessage per ML discussion.  All GPB messages are now in the drizzled::message namespace.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#define DRIZZLED_UNIREG_H
25
25
 
26
26
#include <drizzled/structs.h>                           /* All structs we need */
27
 
#include <drizzled/serialize/table.pb.h>
28
 
int drizzle_read_table_proto(const char* path, drizzle::Table* table);
 
27
#include <drizzled/message/table.pb.h>
 
28
int drizzle_read_table_proto(const char* path, drizzled::message::Table* table);
29
29
int table_proto_exists(const char *path);
30
30
int copy_table_proto_file(const char *from, const char* to);
31
31