~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/transaction_reader.h

  • Committer: Stewart Smith
  • Date: 2010-11-07 04:22:31 UTC
  • mto: (1911.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1912.
  • Revision ID: stewart@flamingspork.com-20101107042231-ola4sl7j0qvg58tz
fix ARCHIVE storage engine calling exit (lintian warning). Was because we were linking in libinternal into libazio, which links into archive plugin. Just link libinternal into the command line utilities.

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/plugin/plugin.h"
 
28
#include "drizzled/replication_services.h" /* For global transaction ID typedef */
31
29
 
32
30
/**
33
31
 * @file Defines the API for a TransactionReader
46
44
/**
47
45
 * Class which can read Transaction messages from some source
48
46
 */
49
 
class DRIZZLED_API TransactionReader : public Plugin
 
47
class TransactionReader : public Plugin
50
48
{
51
49
  TransactionReader();
52
50
  TransactionReader(const TransactionReader &);