~drizzle-trunk/drizzle/development

1429.3.1 by Monty Taylor
Use unordered_map from the upcoming c++0x standard instead of a homemade
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 *
4
 *  Copyright (C) 2010 Monty Taylor
5
 *
6
 *  This program is free software; you can redistribute it and/or modify
7
 *  it under the terms of the GNU General Public License as published by
8
 *  the Free Software Foundation; version 2 of the License.
9
 *
10
 *  This program is distributed in the hope that it will be useful,
11
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 *  GNU General Public License for more details.
14
 *
15
 *  You should have received a copy of the GNU General Public License
16
 *  along with this program; if not, write to the Free Software
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
 */
19
20
/**
21
 * @file
22
 *
23
 * Includes either std::unordered_map if we have it, or boost::unordered_map
24
 * if we don't. Puts them into the drizzled namespace
25
 */
26
27
#ifndef DRIZZLED_UNORDERED_MAP_H
28
#define DRIZZLED_UNORDERED_MAP_H
29
30
#ifdef HAVE_STD_UNORDERED_MAP
31
# include <unordered_map>
32
#else
33
# ifdef HAVE_TR1_UNORDERED_MAP
34
#  include <tr1/unordered_map>
35
# else
36
#  ifdef HAVE_BOOST_UNORDERED_MAP
37
#   include <boost/unordered_map.hpp>
38
#  else
39
#   include <map>
40
#   include <functional>
41
#  endif
42
# endif
43
#endif
44
45
namespace drizzled {
46
47
#ifdef HAVE_STD_UNORDERED_MAP
48
using std::unordered_map;
49
using std::hash;
50
#else
51
# ifdef HAVE_TR1_UNORDERED_MAP
52
using std::tr1::unordered_map;
53
using std::tr1::hash;
54
# else
55
#  ifdef HAVE_BOOST_UNORDERED_MAP
56
using boost::unordered_map;
57
using boost::hash;
58
#  else
59
60
template <typename Key, typename Data,
61
          typename HashFcn = std::less<Key>,
62
          typename EqualKey = int >
63
class unordered_map :
64
  public std::map<Key, Data, HashFcn>
65
{ 
66
public:
67
  void rehash(size_t)
68
  { }
69
};
70
71
#  endif /* HAVE_BOOST_UNORDERED_MAP else */
72
# endif /* HAVE_TR1_UNORDERED_MAP else */
73
#endif /* HAVE_STD_UNORDERED_MAP else */
74
75
76
}  /* namespace drizzled */
77
78
#endif /* DRIZZLED_UNORDERED_MAP_H */