~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_function_container.h

  • Committer: Monty Taylor
  • Date: 2010-05-12 05:00:55 UTC
  • mto: (1527.1.5 staging)
  • mto: This revision was merged to the branch mainline in revision 1529.
  • Revision ID: mordred@inaugust.com-20100512050055-i0kvg8xpr9dupz54
Wrap the libraries in if BUILD_*_PLUGIN so that they don't build when we're
disabling.

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