~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/plugin.cc

  • Committer: Monty Taylor
  • Date: 2009-10-27 01:05:10 UTC
  • mto: This revision was merged to the branch mainline in revision 1201.
  • Revision ID: mordred@inaugust.com-20091027010510-rel1e59xy7ti27a9
Renamed plugin::Handle to plugin::Module for clarity.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
#include "drizzled/global.h"
21
21
#include "drizzled/plugin/plugin.h"
22
 
#include "drizzled/plugin/handle.h"
 
22
#include "drizzled/plugin/module.h"
23
23
 
24
24
namespace drizzled
25
25
{
28
28
  : name(in_name),
29
29
    aliases(),
30
30
    is_active(true),
31
 
    handle(NULL)
 
31
    module(NULL)
32
32
{ }
33
33
 
34
34
const std::string& plugin::Plugin::getModuleName() const
35
35
{
36
 
  return handle->getName();
 
36
  return module->getName();
37
37
}
38
38
 
39
39
} /* namespace drizzled */