~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.h

  • Committer: Monty Taylor
  • Date: 2009-12-22 08:48:52 UTC
  • mto: This revision was merged to the branch mainline in revision 1253.
  • Revision ID: mordred@inaugust.com-20091222084852-pitg1nipnf8dxw4f
Made magic with cached_directory.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
#include "drizzled/plugin/plugin.h"
29
29
#include "drizzled/sql_string.h"
30
30
#include "drizzled/table_identifier.h"
31
 
 
32
 
#include "mysys/cached_directory.h"
 
31
#include "drizzled/cached_directory.h"
33
32
 
34
33
#include <bitset>
35
34
#include <string>
36
35
#include <vector>
 
36
#include <set>
37
37
 
38
38
class TableList;
39
39
class Session;
385
385
  }
386
386
 
387
387
  // TODO: move these to protected
388
 
  virtual void doGetTableNames(CachedDirectory &directory, std::string& db_name, std::set<std::string>& set_of_names);
 
388
  virtual void doGetTableNames(drizzled::CachedDirectory &directory,
 
389
                               std::string& db_name,
 
390
                               std::set<std::string>& set_of_names);
389
391
  virtual int doDropTable(Session& session,
390
392
                          const std::string table_path)= 0;
391
393