~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/module/module.h

  • Committer: Brian Aker
  • Date: 2010-05-21 18:25:00 UTC
  • mfrom: (1530.2.10)
  • Revision ID: brian@gaz-20100521182500-c30dbqd2ko56cf56
Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
#ifndef DRIZZLED_PLUGIN_MODULE_H
21
 
#define DRIZZLED_PLUGIN_MODULE_H
 
20
#ifndef DRIZZLED_MODULE_MODULE_H
 
21
#define DRIZZLED_MODULE_MODULE_H
22
22
 
23
23
/**
24
24
 * @file Defines a Plugin Module
30
30
 
31
31
#include <cassert>
32
32
 
33
 
#include "drizzled/plugin/manifest.h"
 
33
#include "drizzled/module/manifest.h"
34
34
 
35
35
namespace drizzled
36
36
{
37
37
class sys_var;
38
38
 
39
 
namespace plugin
 
39
void module_shutdown(module::Registry &registry);
 
40
 
 
41
namespace module
40
42
{
41
43
 
42
44
class Library;
77
79
  }
78
80
};
79
81
 
80
 
} /* namespace plugin */
 
82
} /* namespace module */
81
83
} /* namespace drizzled */
82
84
 
83
 
#endif /* DRIZZLED_PLUGIN_MODULE_H */
 
85
#endif /* DRIZZLED_MODULE_MODULE_H */