~vjsamuel/drizzle/fix-bug-850898

« back to all changes in this revision

Viewing changes to drizzled/plugin/transaction_applier.h

  • Committer: Mark Atwood
  • Date: 2011-08-17 19:14:47 UTC
  • mfrom: (2385.3.17 rf)
  • Revision ID: me@mark.atwood.name-20110817191447-h86yzddvycd0xmof
mergeĀ lp:~olafvdspek/drizzle/refactor6

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
 */
46
46
class DRIZZLED_API TransactionApplier : public Plugin
47
47
{
48
 
  TransactionApplier();
49
 
  TransactionApplier(const TransactionApplier &);
50
 
  TransactionApplier& operator=(const TransactionApplier &);
51
48
public:
52
49
  explicit TransactionApplier(std::string name_arg)
53
50
    : Plugin(name_arg, "TransactionApplier")
54
51
  {
55
52
  }
56
 
  virtual ~TransactionApplier() {}
57
53
  /**
58
54
   * Apply something to a target.
59
55
   *