~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/transaction_log/transaction_log.h

  • Committer: Brian Aker
  • Date: 2011-03-14 05:40:28 UTC
  • Revision ID: brian@tangent.org-20110314054028-jhey35e5la4nfl4w
Mass removal of ifdef/endif in favor of pragma once.

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
 * the TransactionLogApplier plugin(s).
36
36
 */
37
37
 
38
 
#ifndef PLUGIN_TRANSACTION_LOG_TRANSACTION_LOG_H
39
 
#define PLUGIN_TRANSACTION_LOG_TRANSACTION_LOG_H
 
38
#pragma once
40
39
 
41
40
#include <drizzled/atomics.h>
42
41
#include <drizzled/replication_services.h>
210
209
  bool do_checksum; ///< Do a CRC32 checksum when writing Transaction message to log?
211
210
};
212
211
 
213
 
#endif /* PLUGIN_TRANSACTION_LOG_TRANSACTION_LOG_H */