~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/simple_user_policy/module.cc

  • Committer: Brian Aker
  • Date: 2010-05-17 23:12:39 UTC
  • Revision ID: brian@gaz-20100517231239-kgcnn613z0gga7ie
Code shuffle on ReadRecord

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
namespace simple_user_policy
29
29
{
30
30
 
31
 
static int init(module::Context &context)
 
31
static int init(plugin::Context &context)
32
32
{
33
33
  context.add(new Policy);
34
34
  return 0;
36
36
 
37
37
} /* namespace simple_user_policy */
38
38
 
39
 
DRIZZLE_PLUGIN(simple_user_policy::init, NULL, NULL);
 
39
DRIZZLE_PLUGIN(simple_user_policy::init, NULL);