-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.hpp
61 lines (54 loc) · 1.15 KB
/
main.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#pragma once
/*
**==========================
** Colors
**==========================
*/
# define RED "\033[1;31m"
# define GREEN "\033[1;32m"
# define YELLOW "\033[1;33m"
# define CYAN "\033[1;36m"
# define RESET "\033[0m"
/*
**==========================
** Includes
**==========================
*/
#include <iostream>
#include <cstdio>
#include <sstream>
#include <iterator>
#include <memory>
#include <algorithm>
#include <fstream>
#include <list>
#include <vector>
#include <limits>
#include <cstddef>
#include <typeinfo>
#include <cmath>
#include <functional>
#include <map>
#include <stack>
#include <queue>
/*
**==========================
** My Includes
**==========================
*/
#include "include/List.hpp"
#include "include/Vector.hpp"
#include "include/Map.hpp"
#include "include/Stack.hpp"
#include "include/Queue.hpp"
/*
**==========================
** Tests
**==========================
*/
#include "tests/utils.hpp"
#include "tests/list_test_template.hpp"
#include "tests/vector_test_template.hpp"
#include "tests/map_test_template.hpp"
#include "tests/stack_test_template.hpp"
#include "tests/queue_test_templete.hpp"