~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/data_engine/schemas.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_SCHEMAS_H
22
22
#define PLUGIN_DATA_ENGINE_SCHEMAS_H
23
23
 
24
 
#include "config.h"
25
 
 
26
24
#include <set>
27
25
 
28
26
#include "drizzled/plugin/table_function.h"
57
55
    virtual bool checkSchema();
58
56
 
59
57
  public:
60
 
    Generator(Field **arg);
 
58
    Generator(drizzled::Field **arg);
61
59
 
62
60
    const std::string &schema_name()
63
61
    {
74
72
    }
75
73
  };
76
74
 
77
 
  Generator *generator(Field **arg)
 
75
  Generator *generator(drizzled::Field **arg)
78
76
  {
79
77
    return new Generator(arg);
80
78
  }
98
96
    }
99
97
 
100
98
  public:
101
 
    Generator(Field **arg) :
 
99
    Generator(drizzled::Field **arg) :
102
100
      SchemasTool::Generator(arg)
103
101
    { }
104
102
  };
105
103
 
106
 
  Generator *generator(Field **arg)
 
104
  Generator *generator(drizzled::Field **arg)
107
105
  {
108
106
    return new Generator(arg);
109
107
  }