~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/module/registry.h

  • Committer: Monty Taylor
  • Date: 2011-01-18 05:29:46 UTC
  • mto: (2114.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 2115.
  • Revision ID: mordred@inaugust.com-20110118052946-j7a7v3qsump62duw
Use the catalog registry.

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
 
61
61
  typedef std::map<std::string, Library *> LibraryMap;
62
62
  typedef std::map<std::string, Module *> ModuleMap;
 
63
  typedef std::vector<Module *> ModuleList;
63
64
private:
64
65
  LibraryMap library_registry_;
65
66
  ModuleMap module_registry_;
102
103
 
103
104
  void remove(Module *module);
104
105
 
105
 
  std::vector<Module *> getList(bool active);
 
106
  std::vector<Module *> getList();
106
107
 
107
108
  const plugin::Plugin::map &getPluginsMap() const
108
109
  {