~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/command_applier.h

Merged in latest plugin-slot-reorg.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
 * read() call.
33
33
 */
34
34
 
35
 
/* some forward declarations needed */
36
 
namespace drizzled
37
 
{
38
 
  namespace message
39
 
  {
40
 
    class Command;
41
 
  }
42
 
}
43
 
 
44
 
namespace drizzled
45
 
{
 
35
namespace drizzled
 
36
{
 
37
 
 
38
namespace message { class Command; }
 
39
 
46
40
namespace plugin
47
41
{
48
42
 
75
69
   * internal method for determining if it is active or not.
76
70
   */
77
71
  virtual bool isActive() {return false;}
 
72
 
 
73
  static void add(CommandApplier *applier);
 
74
  static void remove(CommandApplier *applier);
78
75
};
79
76
 
80
77
} /* namespace plugin */