~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.h

  • Committer: Brian Aker
  • Date: 2010-04-14 21:40:03 UTC
  • mfrom: (1452.2.5 use-std-unordered)
  • Revision ID: brian@gaz-20100414214003-30eep6lxph0iq4f7
Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
#include "drizzled/cached_directory.h"
34
34
#include "drizzled/plugin/monitored_in_transaction.h"
35
35
 
36
 
#include "drizzled/hash.h"
 
36
#include <drizzled/unordered_map.h>
37
37
 
38
38
#include <bitset>
39
39
#include <string>
120
120
namespace plugin
121
121
{
122
122
 
123
 
typedef hash_map<std::string, StorageEngine *> EngineMap;
 
123
typedef unordered_map<std::string, StorageEngine *> EngineMap;
124
124
typedef std::vector<StorageEngine *> EngineVector;
125
125
 
126
126
typedef std::set<std::string> TableNameList;