~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/plugin.cc

  • Committer: Monty Taylor
  • Date: 2009-10-13 06:17:38 UTC
  • mto: (1130.3.33 memory-file-moves)
  • mto: This revision was merged to the branch mainline in revision 1184.
  • Revision ID: mordred@inaugust.com-20091013061738-rv5pmqulng8rfvjn
Removed runtime active flag from plugin::Plugin. Put a runtime enabled flag on CommandApplier and CommandReplicator - we can refactor this down into plugin::Plugin later if we need to.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
plugin::Plugin::Plugin(std::string in_name)
27
27
  : name(in_name),
28
28
    aliases(),
 
29
    is_active(true),
29
30
    handle(NULL)
30
 
{
31
 
  is_active= true;
32
 
}
 
31
{ }
33
32
 
34
33
} /* namespace drizzled */