~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_function_container.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:
21
21
#ifndef DRIZZLED_TABLE_FUNCTION_CONTAINER_H
22
22
#define DRIZZLED_TABLE_FUNCTION_CONTAINER_H
23
23
 
24
 
#include "drizzled/hash.h"
 
24
#include <drizzled/unordered_map.h>
25
25
#include <set>
26
26
 
27
27
namespace drizzled {
28
28
 
29
29
class TableFunctionContainer {
30
 
  typedef hash_map<std::string, plugin::TableFunction *> ToolMap;
 
30
  typedef unordered_map<std::string, plugin::TableFunction *> ToolMap;
31
31
 
32
32
  ToolMap table_map;
33
33