~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/module/context.h

  • Committer: lbieber at stabletransit
  • Date: 2010-10-18 17:22:28 UTC
  • mfrom: (1857.3.6 add-sys-var-context-register)
  • mto: This revision was merged to the branch mainline in revision 1860.
  • Revision ID: lbieber@drizzle-build-n02.wc1.dfw1.stabletransit.com-20101018172228-2v7agvxwkdq0losu
Merge Monty - Make it possible to use sys_var directly from plugins.

Show diffs side-by-side

added added

removed removed

Lines of Context:
80
80
  void registerVariable(sys_var *var);
81
81
 
82
82
  option_map getOptions();
 
83
 
 
84
  static std::string prepend_name(std::string module_name,
 
85
                                  const std::string &var_name);
83
86
};
84
87
 
85
 
inline void Context::registerVariable(sys_var *)
86
 
{
87
 
/* In here, you can do:
88
 
  sys_var->append_name_prefix(module->getName());
89
 
  register_variable_whatever();
90
 
*/
91
 
}
92
88
 
93
89
} /* namespace module */
94
90
} /* namespace drizzled */