-
Notifications
You must be signed in to change notification settings - Fork 0
/
manager.h
42 lines (40 loc) · 1.05 KB
/
manager.h
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
#ifndef MANAGER_H
#define MANAGER_H
#include "persons.h"
#include <iostream>
using namespace std;
#include <string>
class manager{
public:
persons* person;
bool updategoal(persons* person);
bool workoutplanbulk(persons* person);
bool workoutplan(persons* person);
bool updateheight(persons* person);
bool updateweight(persons* person);
bool updateage(persons* person);
bool updatebench(persons* person);
bool updatesquat(persons* person);
bool updatedeadlift(persons* person);
bool bench(persons* person);
bool one(persons* person);
bool squat(persons* person);
bool deadlift(persons* person);
bool updatepr(persons* person);
bool update(persons* person);
void save(persons* person);
bool workoutplanlean(persons* person);
bool meal(persons* person);
bool mealbulk(persons* person);
bool meallean(persons* person);
bool strength(persons * person);
persons* storage(string name, string password);
bool play(persons* person);
bool create();
bool login();
bool menu();
bool checkname(persons* person);
bool checkpassword(persons* person);
void add(persons* person);
};
#endif