forked from Immortal-ibr/Library_System
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFunctionalities.h
More file actions
55 lines (37 loc) · 1.35 KB
/
Functionalities.h
File metadata and controls
55 lines (37 loc) · 1.35 KB
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
// Created by tarek on 4/22/2024.
#ifndef PROJECT_FUNCTIONALITIES_H
#define PROJECT_FUNCTIONALITIES_H
#include "Custom_String_Class.h"
#include "User.h"
#include <string>
// Function to load all data from files
void loadFiles();
// Function to save all data to files
void saveFiles();
// Function to login a user
Custom_String_Class login(int);
// Function to load all data from files
void LoadFiles();
// Function to save all data to files
void SaveFiles();
// Function to display the menu for a member
void diplayMenuMember();
// Function to display the menu for a librarian
void displayMenuLibrarian();
// Function to display the menu for finding a book
void displayMenuFindBook();
// Function to display the menu for finding a member
void displayMenuFindMember();
// Function to display the menu for finding a librarian
void displayMenuFindlibrarian();
// Function to implement the choice of a member
void implementMemberChoice(Member&, int);
// Function to implement the choice of a librarian
void implementLibrarianChoice(Librarian&, int);
// Function to implement the choice of finding a book
void implementFindBookChoice(int);
// Function to implement the choice of finding a member
void implementFindMemberChoice(int);
// Function to implement the choice of finding a librarian
void implementFindLibrarianChoice(int);
#endif //PROJECT_FUNCTIONALITIES_H