~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/replication_event_reader.cc

  • 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:
6
6
#include <fstream>
7
7
#include <string>
8
8
#include <unistd.h>
9
 
#include <drizzled/serialize/replication_event.pb.h>
 
9
#include <drizzled/message/replication_event.pb.h>
10
10
 
11
11
using namespace std;
12
 
using namespace drizzle;
 
12
using namespace drizzled::message;
13
13
 
14
14
/*
15
15
  Example reader application for master.info data.
16
16
*/
17
17
 
18
 
void printRecord(const ::drizzle::EventList *list)
 
18
void printRecord(const ::drizzled::message::EventList *list)
19
19
{
20
20
  int32_t e_size;
21
21