~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to plugin/registry_dictionary/dictionary.cc

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2010-03-18 12:12:31 UTC
  • Revision ID: james.westby@ubuntu.com-20100318121231-k6g1xe6cshbwa0f8
Tags: upstream-2010.03.1347
ImportĀ upstreamĀ versionĀ 2010.03.1347

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* - mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
 
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
 
3
 *
 
4
 *  Copyright (C) 2010 Brian Aker
 
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; either version 2 of the License, or
 
9
 *  (at your option) any later version.
 
10
 *
 
11
 *  This program is distributed in the hope that it will be useful,
 
12
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 *  GNU General Public License for more details.
 
15
 *
 
16
 *  You should have received a copy of the GNU General Public License
 
17
 *  along with this program; if not, write to the Free Software
 
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
19
 */
 
20
 
 
21
#include "config.h"
 
22
#include "plugin/registry_dictionary/dictionary.h"
 
23
 
 
24
using namespace drizzled;
 
25
 
 
26
static ModulesTool *modules;
 
27
static PluginsTool *plugins;
 
28
 
 
29
static int init(drizzled::plugin::Registry &registry)
 
30
{
 
31
  modules= new(std::nothrow)ModulesTool;
 
32
  plugins= new(std::nothrow)PluginsTool;
 
33
 
 
34
  registry.add(modules);
 
35
  registry.add(plugins);
 
36
  
 
37
  return 0;
 
38
}
 
39
 
 
40
static int finalize(drizzled::plugin::Registry &registry)
 
41
{
 
42
  registry.remove(modules);
 
43
  registry.remove(plugins);
 
44
  delete modules;
 
45
  delete plugins;
 
46
 
 
47
  return 0;
 
48
}
 
49
 
 
50
DRIZZLE_DECLARE_PLUGIN
 
51
{
 
52
  DRIZZLE_VERSION_ID,
 
53
  "registry_dictionary",
 
54
  "1.0",
 
55
  "Brian Aker",
 
56
  "Provides dictionary for plugin registry system.",
 
57
  PLUGIN_LICENSE_GPL,
 
58
  init,     /* Plugin Init */
 
59
  finalize,     /* Plugin Deinit */
 
60
  NULL,               /* system variables */
 
61
  NULL                /* config options   */
 
62
}
 
63
DRIZZLE_DECLARE_PLUGIN_END;