blob: d125b07cc2d72c0183cee4ef33ee0ec2da320486 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
/*-----------------------------------------------------------------------------
| Copyright (c) 2013-2017, Nucleic Development Team.
|
| Distributed under the terms of the Modified BSD License.
|
| The full license is in the file COPYING.txt, distributed with this software.
|----------------------------------------------------------------------------*/
#pragma once
#include <functional>
#include <map>
#include <memory>
#include <utility>
#include "AssocVector.h"
namespace kiwi
{
namespace impl
{
template<
typename K,
typename V,
typename C = std::less<K>,
typename A = std::allocator< std::pair<K, V> > >
class MapType
{
public:
typedef Loki::AssocVector<K, V, C, A> Type;
//typedef std::map<K, V, C, A> Type;
private:
MapType();
};
} // namespace impl
} // namespace kiwi
|