~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/rabbitmq/rabbitmq_log.h

  • Committer: Olaf van der Spek
  • Date: 2011-07-04 19:11:47 UTC
  • mto: This revision was merged to the branch mainline in revision 2367.
  • Revision ID: olafvdspek@gmail.com-20110704191147-s99ojek811zi1fzj
Remove unused Name_resolution_context::error_reporter

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 */
24
24
 
25
25
 
26
 
#ifndef PLUGIN_RABBITMQ_RABBITMQ_LOG_H
27
 
#define PLUGIN_RABBITMQ_RABBITMQ_LOG_H
 
26
#pragma once
28
27
 
29
28
#include <drizzled/replication_services.h>
30
29
#include <drizzled/plugin/transaction_applier.h>
62
61
   * @param[in] mqHandler name of the plugin, typically rabbitmq_log.
63
62
   */
64
63
  RabbitMQLog(const std::string &name,
65
 
              const std::string &exchange,
66
 
              const std::string &routingkey,
67
64
              RabbitMQHandler* mqHandler);
68
65
  ~RabbitMQLog();
69
66
 
83
80
 
84
81
} /* namespace drizzle_plugin */
85
82
 
86
 
#endif /* PLUGIN_RABBITMQ_RABBITMQ_LOG_H */