~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.h

  • Committer: Brian Aker
  • Date: 2010-07-28 23:07:42 UTC
  • mto: This revision was merged to the branch mainline in revision 1671.
  • Revision ID: brian@gaz-20100728230742-idji8pjd3trphd1a
Fix up a few additional cases around case insensitive usage for
unordered_map. This also places the code in util/string.h behind an
additional namespace of "util"

Show diffs side-by-side

added added

removed removed

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