~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/transaction_reader.h

  • Committer: Andrew Hutchings
  • Date: 2011-02-01 10:23:22 UTC
  • mto: (2136.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 2137.
  • Revision ID: andrew@linuxjedi.co.uk-20110201102322-oxztcyrjzg3c7yta
Fix counters cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
22
22
 */
23
23
 
24
 
#pragma once
25
 
 
26
 
#include <drizzled/plugin/plugin.h>
27
 
#include <drizzled/replication_services.h> /* For global transaction ID typedef */
28
 
 
29
 
#include <drizzled/visibility.h>
 
24
#ifndef DRIZZLED_PLUGIN_TRANSACTION_READER_H
 
25
#define DRIZZLED_PLUGIN_TRANSACTION_READER_H
 
26
 
 
27
#include "drizzled/plugin/plugin.h"
 
28
#include "drizzled/replication_services.h" /* For global transaction ID typedef */
 
29
 
 
30
#include "drizzled/visibility.h"
30
31
 
31
32
/**
32
33
 * @file Defines the API for a TransactionReader
34
35
 * A command reader is a class which is able to read Transaction messages from some source
35
36
 */
36
37
 
37
 
namespace drizzled {
38
 
namespace plugin {
 
38
namespace drizzled
 
39
{
 
40
namespace message { class Transaction; }
 
41
 
 
42
namespace plugin
 
43
{
 
44
 
39
45
 
40
46
/**
41
47
 * Class which can read Transaction messages from some source
69
75
} /* end namespace plugin */
70
76
} /* end namespace drizzled */
71
77
 
 
78
#endif /* DRIZZLED_PLUGIN_TRANSACTION_READER_H */