~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/transaction_reader.h

  • Committer: Brian Aker
  • Date: 2011-02-22 06:12:02 UTC
  • mfrom: (2190.1.6 drizzle-build)
  • Revision ID: brian@tangent.org-20110222061202-k03czxykqy4x9hjs
List update, header fixes, multiple symbols, and David deletes some code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#ifndef DRIZZLED_PLUGIN_TRANSACTION_READER_H
25
25
#define DRIZZLED_PLUGIN_TRANSACTION_READER_H
26
26
 
27
 
#include "drizzled/plugin/plugin.h"
28
 
#include "drizzled/replication_services.h" /* For global transaction ID typedef */
 
27
#include <drizzled/plugin/plugin.h>
 
28
#include <drizzled/replication_services.h> /* For global transaction ID typedef */
 
29
 
 
30
#include <drizzled/visibility.h>
29
31
 
30
32
/**
31
33
 * @file Defines the API for a TransactionReader
44
46
/**
45
47
 * Class which can read Transaction messages from some source
46
48
 */
47
 
class TransactionReader : public Plugin
 
49
class DRIZZLED_API TransactionReader : public Plugin
48
50
{
49
51
  TransactionReader();
50
52
  TransactionReader(const TransactionReader &);