~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_engine/schema.h

  • Committer: Brian Aker
  • Date: 2010-09-12 04:01:25 UTC
  • mto: (1768.2.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 1770.
  • Revision ID: brian@tangent.org-20100912040125-zz4ref1mfy5u88uo
Update to use the identifier (and not the straight filename).

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
class Schema : public drizzled::plugin::StorageEngine
38
38
{
39
39
  bool writeSchemaFile(const drizzled::SchemaIdentifier &schema_identifier, const drizzled::message::Schema &db);
40
 
  bool readSchemaFile(const std::string &schema_file_name, drizzled::message::Schema &schema);
 
40
  bool readSchemaFile(const drizzled::SchemaIdentifier &schema_identifier, drizzled::message::Schema &schema);
41
41
 
42
42
  void prime();
43
43