-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.hpp
29 lines (26 loc) · 1000 Bytes
/
config.hpp
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
#pragma once
/**************************************************/
/* Change paths to your files */
/* or comment #include */
/* if you haven't yet some container */
/**************************************************/
#define VECTOR "../../../srcs/vector.hpp"
#define STACK "../../../srcs/stack.hpp"
#define MAP "../../../srcs/map.hpp"
#define SET "../../../srcs/set.hpp"
#define UTILITIES "../../../srcs/utils.hpp"
/* comment this to turn OFF flags (-WWW, -std=98) */
#define FLAGS
/**************************************************/
/* Change template names of your classes */
/**************************************************/
#define _vector ft::vector
#define _stack ft::stack
#define _map ft::map
#define _set ft::set
#define _is_integral ft::is_integral
#define _enable_if ft::enable_if
#define _pair ft::pair
#define _make_pair ft::make_pair
#define _lexicographical ft::lexicographical_compare
#define _equal ft::equal