~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/replication_services.h

  • Committer: Brian Aker
  • Date: 2011-02-12 08:10:17 UTC
  • mto: This revision was merged to the branch mainline in revision 2161.
  • Revision ID: brian@tangent.org-20110212081017-7793i41ybt7gp5ty
More removal of session from includes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
23
23
 */
24
24
 
25
 
#pragma once
 
25
#ifndef DRIZZLED_REPLICATION_SERVICES_H
 
26
#define DRIZZLED_REPLICATION_SERVICES_H
26
27
 
27
 
#include <drizzled/atomics.h>
28
 
#include <drizzled/plugin/replication.h>
 
28
#include "drizzled/atomics.h"
 
29
#include "drizzled/plugin/replication.h"
29
30
 
30
31
#include <string>
31
32
#include <vector>
32
33
#include <utility>
33
34
 
34
 
#include <drizzled/visibility.h>
35
 
 
36
 
namespace drizzled {
 
35
#include "drizzled/visibility.h"
 
36
 
 
37
namespace drizzled
 
38
{
 
39
 
 
40
/* some forward declarations needed */
 
41
class Session;
 
42
class Table;
 
43
 
 
44
namespace plugin
 
45
{
 
46
  class TransactionReplicator;
 
47
  class TransactionApplier;
 
48
}
 
49
namespace message
 
50
{
 
51
  class Transaction;
 
52
}
37
53
 
38
54
/**
39
55
 * This is a class which manages transforming internal 
172
188
 
173
189
} /* namespace drizzled */
174
190
 
 
191
#endif /* DRIZZLED_REPLICATION_SERVICES_H */