~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/transaction_reader.h

  • Committer: pcrews
  • Date: 2011-05-24 17:36:24 UTC
  • mfrom: (1099.4.232 drizzle)
  • Revision ID: pcrews@lucid32-20110524173624-mwr1bvq6fa1r01ao
Updated translations + 2011.05.18 tarball tag

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
 
#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"
 
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>
31
30
 
32
31
/**
33
32
 * @file Defines the API for a TransactionReader
35
34
 * A command reader is a class which is able to read Transaction messages from some source
36
35
 */
37
36
 
38
 
namespace drizzled
39
 
{
40
 
namespace message { class Transaction; }
41
 
 
42
 
namespace plugin
43
 
{
44
 
 
 
37
namespace drizzled {
 
38
namespace plugin {
45
39
 
46
40
/**
47
41
 * Class which can read Transaction messages from some source
75
69
} /* end namespace plugin */
76
70
} /* end namespace drizzled */
77
71
 
78
 
#endif /* DRIZZLED_PLUGIN_TRANSACTION_READER_H */