~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/transaction_reader.h

  • Committer: Brian Aker
  • Date: 2009-11-24 02:06:37 UTC
  • mfrom: (1223.1.7 push)
  • Revision ID: brian@gaz-20091124020637-9gb65vj98x1arydm
MergeĀ forĀ staging.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2008-2009 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2008-2009 Sun Microsystems
5
5
 *
6
6
 *  Authors:
7
7
 *
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 */
29
 
 
30
 
#include "drizzled/visibility.h"
 
27
#include <drizzled/replication_services.h> /* For global transaction ID typedef */
31
28
 
32
29
/**
33
30
 * @file Defines the API for a TransactionReader
46
43
/**
47
44
 * Class which can read Transaction messages from some source
48
45
 */
49
 
class DRIZZLED_API TransactionReader : public Plugin
 
46
class TransactionReader : public Plugin
50
47
{
51
48
  TransactionReader();
52
49
  TransactionReader(const TransactionReader &);
72
69
                    message::Transaction *to_fill)= 0;
73
70
};
74
71
 
75
 
} /* end namespace plugin */
 
72
} /* end namespace drizzled::plugin */
76
73
} /* end namespace drizzled */
77
74
 
78
75
#endif /* DRIZZLED_PLUGIN_TRANSACTION_READER_H */