-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcppBL.hpp
40 lines (30 loc) · 1013 Bytes
/
cppBL.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
/*-------------------------------------------------------------------------
CPP BASIC LIBRARY by lucaaasch
It is a basic library for C++ that provides a number of functions
and data structures for efficient data management in programs.
All rights reserved https://github.com/lucaaasch
---------------------------------------------------------------------------*/
#ifndef TADS_HPP
#define TADS_HPP
// CPP STANDARD
#include <iostream>
#include <string>
#include <string.h>
// FUNCTIONS
#include "include/arrays.hpp"
#include "include/strings.hpp"
#include "include/files.hpp"
#include "include/arrays.hpp"
#include "include/lists.hpp"
#include "include/tokens.hpp"
// TADS
#include "include/Array.hpp"
#include "include/BitReader.hpp"
#include "include/BitWriter.hpp"
#include "include/Coll.hpp"
#include "include/List.hpp"
#include "include/Map.hpp"
#include "include/Mtx.hpp"
#include "include/Queue.hpp"
#include "include/Stack.hpp"
#endif // TADS_HPP