~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/plugin.h

updating to latest trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
  Plugin(const Plugin&);
47
47
  Plugin& operator=(const Plugin &);
48
48
public:
49
 
  typedef std::map<std::string, Plugin *> map;
 
49
  typedef std::pair<const std::string, const std::string> map_key;
 
50
  typedef std::map<const map_key, plugin::Plugin *> map;
50
51
  typedef std::vector<Plugin *> vector;
51
52
 
52
53
  explicit Plugin(const std::string &name, const std::string &type_name);