-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.cpp
More file actions
40 lines (34 loc) · 887 Bytes
/
main.cpp
File metadata and controls
40 lines (34 loc) · 887 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
36
37
38
39
40
#include <iostream>
#include <chrono>
#include <thread>
#include "event.h"
#include "queue.h"
#include "stack.h"
#include "utilities.h"
#include "string"
using namespace std;
//color codes
#define RESET "\033[0m"
#define RED "\033[31m"
#define GREEN "\033[32m"
#define YELLOW "\033[33m"
#define BLUE "\033[34m"
#define MAGENTA "\033[35m"
#define CYAN "\033[36m"
int main()
{
cout << GREEN <<"*********************************************************" << RESET << endl;
Delay(200);
cout << "\tWelcome to ";
Delay(500);
cout << BLUE << "Mansoura " << RESET ;
Delay(500);
cout << RED <<"Robotics " << RESET ;
Delay(500);
cout << "Event Manager" << RESET << endl;
Delay(200);
cout << GREEN <<"*********************************************************" << RESET << endl;
enterEvents();
manageEvents();
return 0;
}