~drizzle-trunk/drizzle/development

1317.1.6 by Monty Taylor
Added plugin to test the Authorization interface.
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 *
4
 *  Copyright (C) 2010 Monty Taylor <mordred@inaugust.com>
5
 *
6
 *  This program is free software; you can redistribute it and/or modify
7
 *  it under the terms of the GNU General Public License as published by
8
 *  the Free Software Foundation; version 2 of the License.
9
 *
10
 *  This program is distributed in the hope that it will be useful,
11
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 *  GNU General Public License for more details.
14
 *
15
 *  You should have received a copy of the GNU General Public License
16
 *  along with this program; if not, write to the Free Software
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
 */
19
2173.2.1 by Monty Taylor
Fixes incorrect usage of include
20
#include <config.h>
1317.1.6 by Monty Taylor
Added plugin to test the Authorization interface.
21
1471.2.3 by Monty Taylor
Replaced test_authz with a plugin implementing a hard-coded simple
22
#include <drizzled/plugin/authorization.h>
23
24
#include "policy.h"
1317.1.6 by Monty Taylor
Added plugin to test the Authorization interface.
25
26
using namespace drizzled;
27
1471.2.3 by Monty Taylor
Replaced test_authz with a plugin implementing a hard-coded simple
28
namespace simple_user_policy
29
{
1317.1.6 by Monty Taylor
Added plugin to test the Authorization interface.
30
1530.2.6 by Monty Taylor
Moved plugin::Context to module::Context.
31
static int init(module::Context &context)
1317.1.6 by Monty Taylor
Added plugin to test the Authorization interface.
32
{
1471.2.3 by Monty Taylor
Replaced test_authz with a plugin implementing a hard-coded simple
33
  context.add(new Policy);
1317.1.6 by Monty Taylor
Added plugin to test the Authorization interface.
34
  return 0;
35
}
36
1471.2.3 by Monty Taylor
Replaced test_authz with a plugin implementing a hard-coded simple
37
} /* namespace simple_user_policy */
1317.1.6 by Monty Taylor
Added plugin to test the Authorization interface.
38
1633.6.2 by Vijay Samuel
Reverted changes.
39
DRIZZLE_PLUGIN(simple_user_policy::init, NULL, NULL);