~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/module/library.h

  • Committer: Monty Taylor
  • Date: 2010-05-15 18:23:34 UTC
  • mto: (1530.6.1)
  • mto: This revision was merged to the branch mainline in revision 1556.
  • Revision ID: mordred@inaugust.com-20100515182334-bgbmwij0mioklajx
Renamed classes that were in drizzled::plugin but which were not meant
for consumption by plugin authors to drizzled::module - since they
really have to do with plugin module loading. This way when we
look in drizzled/plugin, we see nothing but plugin interfaces. Win.

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_LIBRARY_H
21
 
#define DRIZZLED_PLUGIN_LIBRARY_H
 
20
#ifndef DRIZZLED_MODULE_LIBRARY_H
 
21
#define DRIZZLED_MODULE_LIBRARY_H
22
22
 
23
23
/**
24
24
 * @file Defines a Plugin Library Wrapper
32
32
 
33
33
namespace drizzled
34
34
{
35
 
namespace plugin
 
35
namespace module
36
36
{
37
37
 
38
38
class Manifest;
71
71
  static Library *loadLibrary(const std::string &plugin_name, bool builtin);
72
72
};
73
73
 
74
 
} /* namespace plugin */
 
74
} /* namespace module */
75
75
} /* namespace drizzled */
76
76
 
77
 
#endif /* DRIZZLED_PLUGIN_LIBRARY_H */
 
77
#endif /* DRIZZLED_MODULE_LIBRARY_H */