-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdriver.cpp
More file actions
35 lines (27 loc) · 818 Bytes
/
driver.cpp
File metadata and controls
35 lines (27 loc) · 818 Bytes
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
// Leader Full Name: Ouahioune Raid Abderrezak
// Group:4
#include <iostream>
#include "Interfaces/Hospital.h"
#include "Part1/Btree.h"
#include "Part3/AVL.h"
#include "Part2/BST.h"
#include "utilities/FileHandler.h"
#include "Test/generalTesting.h"
#include "Test/BtreeComparaison.h"
#include "functionalities.h"
#include <filesystem>
using namespace std;
// Namespace Wrapping All Driver Functionalities
using namespace DriverFunctions;
int main()
{
// IF YOU WANT TO RUN THE SOFTWARE
//DoctorInput();
/*IF YOU WANT TO COMPARE BETWEEN THE 3 ADTS*/
// IF YOU WANT TO GENERATE DATA ONLY
// GeneralTesting::GenerateDataOnly();
// IF YOU WANT TO GENERATE DATA AND TEST
// GeneralTesting::GenerateDataAndTest();
/*IF YOU WANT TO COMPARE BETWEEN THE BTRESS*/
BtreeComparaison::GenerateData();
}