-
Notifications
You must be signed in to change notification settings - Fork 1
/
include_your_files.hpp
32 lines (26 loc) · 1.84 KB
/
include_your_files.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
30
31
32
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* include_your_files.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: llefranc <llefranc@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/04/08 11:23:23 by llefranc #+# #+# */
/* Updated: 2021/07/16 16:33:26 by llefranc ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef INCLUDE_YOUR_FILES_HPP
#define INCLUDE_YOUR_FILES_HPP
// ---------------------------------------------------------------------------
// INSERT HERE THE PATH TO YOUR FILES. COMMENT THE CONTAINERS YOU DON'T WANT
// TO TEST. FT_PAIR IS MANDATORY TESTER WON'T COMPILE OTHERWISE.
// Mandatory in order to compile the tester. If you don't already have it,
// you can include my ft_pair ("./includes_and_utils/my_ft_pair.hpp").
#include "../42_ft_containers/pair.hpp"
#include "../42_ft_containers/vector.hpp" // Comment if you don't want to test VECTOR
#include "../42_ft_containers/list.hpp" // Comment if you don't want to test LIST
#include "../42_ft_containers/stack.hpp" // Comment if you don't want to test STACK
#include "../42_ft_containers/queue.hpp" // Comment if you don't want to test QUEUE
#include "../42_ft_containers/map.hpp" // Comment if you don't want to test MAP
// ---------------------------------------------------------------------------
#endif