Tapkee
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
stdtypes.hpp
Go to the documentation of this file.
1 /* This software is distributed under BSD 3-clause license (see LICENSE file).
2  *
3  * Copyright (c) 2012-2013 Sergey Lisitsyn
4  */
5 
6 #ifndef TAPKEE_DEFINES_STDTYPES_H_
7 #define TAPKEE_DEFINES_STDTYPES_H_
8 
9 #ifndef TAPKEE_INTERNAL_VECTOR
10  #include <vector>
11  #define TAPKEE_INTERNAL_VECTOR std::vector
12 #endif
13 #ifndef TAPKEE_INTERNAL_PAIR
14  #include <utility>
15  #define TAPKEE_INTERNAL_PAIR std::pair
16 #endif
17 #ifndef TAPKEE_INTERNAL_MAP
18  #include <map>
19  #define TAPKEE_INTERNAL_MAP std::map
20 #endif
21 
22 #endif