~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/transaction_reader.h

  • Committer: Mark Atwood
  • Date: 2011-08-12 04:08:33 UTC
  • mfrom: (2385.2.17 refactor5)
  • Revision ID: me@mark.atwood.name-20110812040833-u6j85nc6ahuc0dtz
mergeĀ lp:~olafvdspek/drizzle/refactor5

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
 
24
#pragma once
26
25
 
27
26
#include <drizzled/plugin/plugin.h>
28
27
#include <drizzled/replication_services.h> /* For global transaction ID typedef */
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 */