-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenu.h
More file actions
25 lines (15 loc) · 635 Bytes
/
menu.h
File metadata and controls
25 lines (15 loc) · 635 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
// menu.h
#ifndef MENU_H
#define MENU_H
#include "User.h"
// Launches the main menu and routes the user to appropriate sections based on role.
void mainMenu(User& user);
// Displays the pet management menu, allowing role-based access to pet features.
void petMenu(User& user);
// Displays the owner management menu for adding, viewing, updating, or deleting owners.
void ownerMenu(User& user);
// Displays the appointment management menu, allowing scheduling, updates, and cancellations.
void appointmentMenu(User& user);
// Displays the user management menu, available only to admin users.
void userMenu(User& user);
#endif