~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/module/context.h

  • Committer: Monty Taylor
  • Date: 2010-06-20 18:28:21 UTC
  • mto: (1626.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1633.
  • Revision ID: mordred@inaugust.com-20100620182821-oybk1tbpairic4oq
Added wrapper around variables_map to allow us to pull values back out of
variables map in the code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
 
45
45
namespace module
46
46
{
 
47
 
47
48
class Module;
 
49
class option_map;
48
50
 
49
51
class Context
50
52
{
76
78
  }
77
79
 
78
80
  void registerVariable(sys_var *var);
 
81
 
 
82
  option_map getOptions();
79
83
};
80
84
 
81
85
inline void Context::registerVariable(sys_var *)