~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/command_applier.h

  • Committer: Monty Taylor
  • Date: 2009-09-22 22:24:54 UTC
  • mto: This revision was merged to the branch mainline in revision 1184.
  • Revision ID: mordred@inaugust.com-20090922222454-ioj624ibq2g2271c
Fixed some include guards.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
/**
28
28
 * @file Defines the API for a CommandApplier
29
29
 *
30
 
 * A CommandApplier applies an event it has received from a CommandReplicator (via 
31
 
 * a replicator's replicate() call, or it has read using a CommandReader's read()
32
 
 * call.
 
30
 * A CommandApplier applies an event it has received from a CommandReplicator
 
31
 * (via a replicator's replicate() call, or it has read using a CommandReader's
 
32
 * read() call.
33
33
 */
34
34
 
35
35
/* some forward declarations needed */
77
77
  virtual bool isActive() {return false;}
78
78
};
79
79
 
80
 
} /* end namespace drizzled::plugin */
81
 
} /* end namespace drizzled */
 
80
} /* namespace plugin */
 
81
} /* namespace drizzled */
82
82
 
83
 
#endif /* DRIZZLED_PLUGIN_APPLIER_H */
 
83
#endif /* DRIZZLED_PLUGIN_COMMAND_APPLIER_H */