-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patha5_main.cpp
More file actions
37 lines (33 loc) · 922 Bytes
/
a5_main.cpp
File metadata and controls
37 lines (33 loc) · 922 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
// a5_main.cpp
#include "a5.h"
#include <ncurses.h>
/////////////////////////////////////////////////////////////////////////
//
// Student Info
// ------------
//
// Name : Yasmeen Al-Issa
// St.# : 301539066
// Email: yasmeen_al-issa@sfu.ca
//
//
// Statement of Originality
// ------------------------
//
// All the code and comments below are my own original work. For any non-
// original work, I have provided citations in the comments with enough
// detail so that someone can see the exact source and extent of the
// borrowed work.
//
// In addition, I have not shared this work with anyone else, and I have
// not seen solutions from other students, tutors, websites, books,
// etc.
//
/////////////////////////////////////////////////////////////////////////
int main() {
Database database;
database.read_database_file();
Menu menu;
menu.main_menu(database);
database.save_records();
}