~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/module.h

Removed some plugin loading cruft.

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
public:
42
42
  Library *plugin_dl;
43
43
  bool isInited;
44
 
  MEM_ROOT mem_root;            /* memory for dynamic plugin structures */
45
44
  sys_var *system_vars;         /* server variables for this plugin */
46
45
  Module(const Manifest *manifest_arg, Library *library_arg)
47
46
    : name(manifest_arg->name), manifest(manifest_arg), plugin_dl(library_arg),
48
47
      isInited(false),
49
 
      mem_root(), system_vars(NULL) {}
 
48
      system_vars(NULL) {}
50
49
      
51
50
  Module(const Manifest *manifest_arg)
52
51
    : name(manifest_arg->name), manifest(manifest_arg), plugin_dl(NULL),
53
52
      isInited(false),
54
 
      mem_root(), system_vars(NULL) {}
 
53
      system_vars(NULL) {}
55
54
      
56
55
  const std::string& getName() const
57
56
  {