~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/plugin.cc

[patch 003/129] Merge patch for revision 1788 from InnoDB SVN:
revno: 1788
revision-id: svn-v4:16c675df-0fcb-4bc9-8058-dcc011a37293:branches/zip:5670
parent: svn-v4:16c675df-0fcb-4bc9-8058-dcc011a37293:branches/zip:5663
committer: marko
timestamp: Wed 2009-08-12 12:16:37 +0000
message:
  branches/zip: trx_undo_rec_copy(): Add const qualifier to undo_rec.
  This is a non-functional change.
modified:
  include/trx0rec.h              2@16c675df-0fcb-4bc9-8058-dcc011a37293:trunk%2Finclude%2Ftrx0rec.h
  include/trx0rec.ic             2@16c675df-0fcb-4bc9-8058-dcc011a37293:trunk%2Finclude%2Ftrx0rec.ic
  trx/trx0rec.c                  2@16c675df-0fcb-4bc9-8058-dcc011a37293:trunk%2Ftrx%2Ftrx0rec.c
diff:
=== modified file 'include/trx0rec.h'

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
namespace drizzled
25
25
{
26
26
 
27
 
plugin::Plugin::Plugin(const std::string &name, const std::string &type_name)
28
 
  : _name(name),
29
 
    _is_active(true),
30
 
    _module(NULL),
31
 
    _type_name(type_name)
 
27
plugin::Plugin::Plugin(std::string in_name, std::string in_type_name)
 
28
  : name(in_name),
 
29
    is_active(true),
 
30
    module(NULL),
 
31
    type_name(in_type_name)
32
32
{ }
33
33
 
34
34
const std::string& plugin::Plugin::getModuleName() const
35
35
{
36
 
  return _module->getName();
 
36
  return module->getName();
37
37
}
38
38
 
39
39
} /* namespace drizzled */