~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/data_engine/character_sets.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:
21
21
#ifndef PLUGIN_DATA_ENGINE_CHARACTER_SETS_H
22
22
#define PLUGIN_DATA_ENGINE_CHARACTER_SETS_H
23
23
 
24
 
#include "config.h"
25
 
 
26
24
#include "drizzled/plugin/table_function.h"
27
25
#include "drizzled/field.h"
28
26
 
35
33
 
36
34
  class Generator : public drizzled::plugin::TableFunction::Generator 
37
35
  {
38
 
    CHARSET_INFO **cs;
 
36
    drizzled::CHARSET_INFO **cs;
39
37
 
40
38
  public:
41
 
    Generator(Field **arg);
 
39
    Generator(drizzled::Field **arg);
42
40
 
43
41
    bool populate();
44
42
 
45
43
  };
46
44
 
47
 
  CharacterSetsTool::Generator *generator(Field **arg)
 
45
  CharacterSetsTool::Generator *generator(drizzled::Field **arg)
48
46
  {
49
47
    return new Generator(arg);
50
48
  }