~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/transaction_applier.h

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

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
   *