~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzledump_drizzle.h

  • Committer: Monty Taylor
  • Date: 2011-02-13 17:26:39 UTC
  • mfrom: (2157.2.2 give-in-to-pkg-config)
  • mto: This revision was merged to the branch mainline in revision 2166.
  • Revision ID: mordred@inaugust.com-20110213172639-nhy7i72sfhoq13ms
Merged in pkg-config fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
class DrizzleDumpDatabaseDrizzle;
26
26
class DrizzleDumpDataDrizzle;
27
27
 
 
28
class DrizzleDumpForeignKeyDrizzle : public DrizzleDumpForeignKey
 
29
{
 
30
  public:
 
31
    DrizzleDumpForeignKeyDrizzle(std::string name, DrizzleDumpConnection* connection) : DrizzleDumpForeignKey(name, connection)
 
32
    { }
 
33
 
 
34
    ~DrizzleDumpForeignKeyDrizzle()
 
35
    {
 
36
    }
 
37
};
 
38
 
28
39
class DrizzleDumpIndexDrizzle : public DrizzleDumpIndex
29
40
{
30
41
  public:
61
72
    {
62
73
      fields.clear();
63
74
      indexes.clear();
 
75
      fkeys.clear();
64
76
    }
65
77
    bool populateFields();
66
78
    bool populateIndexes();
 
79
    bool populateFkeys();
67
80
    DrizzleDumpData* getData(void);
68
81
};
69
82