~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/plugin.h

  • Committer: Brian Aker
  • Date: 2009-12-03 01:17:53 UTC
  • mto: (1237.3.2 push)
  • mto: This revision was merged to the branch mainline in revision 1238.
  • Revision ID: brian@gaz-20091203011753-159h2no5m5c5dt9b
Small cleanups, did in MERGE table only engine flag.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
{
35
35
private:
36
36
  const std::string name;
 
37
  std::vector<std::string> aliases;
37
38
  bool is_active;
38
39
  Module *module;
39
40
  const std::string type_name;
66
67
    return name;
67
68
  } 
68
69
 
 
70
  const std::vector<std::string>& getAliases() const
 
71
  {
 
72
    return aliases;
 
73
  }
 
74
 
 
75
  void addAlias(std::string alias)
 
76
  {
 
77
    aliases.push_back(alias);
 
78
  }
 
79
 
69
80
  void setModule(Module *module_arg)
70
81
  {
71
82
    module= module_arg;