~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/show_dictionary/show_schemas.h

edit

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 
30
30
  class Generator : public show_dictionary::Show::Generator 
31
31
  {
 
32
    drizzled::identifier::Schema::vector schema_names;
 
33
    drizzled::identifier::Schema::vector::const_iterator schema_iterator;
 
34
 
 
35
    bool is_schema_primed;
 
36
 
 
37
    virtual void fill();
 
38
    virtual bool checkSchema();
 
39
 
32
40
  public:
33
41
    Generator(drizzled::Field **arg);
34
42
 
35
43
    bool populate();
36
 
 
37
 
  private:
38
 
    drizzled::generator::Schema schema_generator;
 
44
    bool nextSchemaCore();
 
45
    bool nextSchema();
 
46
    bool isSchemaPrimed()
 
47
    {
 
48
      return is_schema_primed;
 
49
    }
39
50
  };
40
51
 
41
52
  Generator *generator(drizzled::Field **arg)