~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/data_engine/plugins.h

  • Committer: Monty Taylor
  • Date: 2010-02-05 08:11:15 UTC
  • mfrom: (1283 build)
  • mto: (1273.13.43 fix_is)
  • mto: This revision was merged to the branch mainline in revision 1300.
  • Revision ID: mordred@inaugust.com-20100205081115-dr82nvrwv4lvw7sd
Merged trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
    std::map<std::string, const drizzled::plugin::Plugin *>::const_iterator end;
34
34
 
35
35
  public:
36
 
    Generator(Field **arg);
 
36
    Generator(drizzled::Field **arg);
37
37
 
38
38
    bool populate();
39
39
  };
40
40
 
41
 
  Generator *generator(Field **arg)
 
41
  Generator *generator(drizzled::Field **arg)
42
42
  {
43
43
    return new Generator(arg);
44
44
  }