~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/plugin.h

  • Committer: Joe Daly
  • Date: 2010-05-27 02:59:16 UTC
  • mto: This revision was merged to the branch mainline in revision 1614.
  • Revision ID: skinny.moey@gmail.com-20100527025916-o4wieb1hxk2shq4u
add status_vars to scoreboard, initial pass

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 
26
26
namespace drizzled
27
27
{
 
28
namespace module
 
29
{
 
30
class Module;
 
31
}
 
32
 
28
33
namespace plugin
29
34
{
30
35
 
31
 
class Module;
32
 
 
33
36
class Plugin
34
37
{
35
38
private:
36
39
  const std::string name;
37
40
  bool is_active;
38
 
  Module *module;
 
41
  module::Module *module;
39
42
  const std::string type_name;
40
43
 
41
44
  Plugin();
66
69
    return name;
67
70
  } 
68
71
 
69
 
  void setModule(Module *module_arg)
 
72
  void setModule(module::Module *module_arg)
70
73
  {
71
74
    module= module_arg;
72
75
  }