~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/data_engine/variables.h

Updates to the classes (first pass).

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
public:
30
30
 
31
31
  VariablesTool();
32
 
 
33
 
  bool populate(Field ** fields);
34
 
 
35
 
  void define(drizzled::message::Table &proto)
36
 
  {
37
 
    proto.CopyFrom(schema);
38
 
  }
39
 
 
40
 
  class Generator : public Tool::Generator 
41
 
  {
42
 
 
43
 
  public:
44
 
    Generator();
45
 
 
46
 
    bool populate(Field ** fields);
47
 
 
48
 
  };
49
 
 
50
 
  Generator *generator()
51
 
  {
52
 
    return new Generator;
53
 
  }
54
32
};
55
33
 
56
34
#endif // PLUGIN_DATA_ENGINE_VARIABLES_H