~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/transaction_log/transaction_log_applier.h

  • Committer: Olaf van der Spek
  • Date: 2011-08-14 17:13:26 UTC
  • mto: This revision was merged to the branch mainline in revision 2407.
  • Revision ID: olafvdspek@gmail.com-20110814171326-e6nnh3q5cp3o0tk3
Remove unnecessary constructors and destructors

Show diffs side-by-side

added added

removed removed

Lines of Context:
82
82
  apply(drizzled::Session &in_session,
83
83
        const drizzled::message::Transaction &to_apply);
84
84
private:
85
 
  /* Don't allows these */
86
 
  TransactionLogApplier();
87
 
  TransactionLogApplier(const TransactionLogApplier &other);
88
 
  TransactionLogApplier &operator=(const TransactionLogApplier &other);
89
85
  /** 
90
86
   * This Applier owns the memory of the associated TransactionLog 
91
87
   * and its index - so we have to track it.