1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2009 Sun Microsystems, Inc.
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.
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.
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
20
#ifndef DRIZZLED_PLUGIN_PLUGIN_H
21
#define DRIZZLED_PLUGIN_PLUGIN_H
40
const std::string _name;
42
module::Module *_module;
43
const std::string _type_name;
46
Plugin(const Plugin&);
47
Plugin& operator=(const Plugin &);
49
typedef std::map<std::string, Plugin *> map;
50
typedef std::vector<Plugin *> vector;
52
explicit Plugin(const std::string &name, const std::string &type_name);
56
* This method is called for all plug-ins on shutdown,
57
* _before_ the plug-ins are deleted. It can be used
58
* when shutdown code references other plug-ins.
60
virtual void shutdownPlugin()
64
// This is run after all plugins have been initialized.
84
const std::string &getName() const
89
void setModule(module::Module *module)
94
const std::string& getTypeName() const
99
const std::string& getModuleName() const;
101
} /* end namespace plugin */
102
} /* end namespace drizzled */
104
#endif /* DRIZZLED_PLUGIN_PLUGIN_H */