~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/transaction_replicator.h

Merge refactored command line using for innodb

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.
5
 
 *  Copyright (C) 2010 Jay Pipes
 
4
 *  Copyright (C) 2008-2009 Sun Microsystems
 
5
 *  Copyright (c) 2010 Jay Pipes
6
6
 *
7
7
 *  Authors:
8
8
 *
25
25
#ifndef DRIZZLED_PLUGIN_TRANSACTION_REPLICATOR_H
26
26
#define DRIZZLED_PLUGIN_TRANSACTION_REPLICATOR_H
27
27
 
28
 
#include <drizzled/plugin/replication.h>
29
 
#include <drizzled/plugin/plugin.h>
30
 
 
31
 
#include <drizzled/visibility.h>
 
28
#include "drizzled/plugin/replication.h"
 
29
#include "drizzled/plugin/plugin.h"
32
30
 
33
31
/**
34
32
 * @file Defines the API for a TransactionReplicator.  
57
55
/**
58
56
 * Class which replicates Transaction messages
59
57
 */
60
 
class DRIZZLED_API TransactionReplicator : public Plugin
 
58
class TransactionReplicator : public Plugin
61
59
{
62
60
  TransactionReplicator();
63
61
  TransactionReplicator(const TransactionReplicator &);