-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnasseim.h
277 lines (246 loc) · 6.09 KB
/
nasseim.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
#pragma once
#include "stdafx.h"
void Resotring_Nums() {
ifstream file;
file.open("Nums.txt");
file >> Students_num >> Books_num;
}
void Save_Nums() {
ofstream file;
file.open("Nums.txt");
file << Students_num << ' ' << Books_num;
}
void Restoring_IDs_from_file() {
ifstream file("IDs.txt");
for(int i = 0; i < Students_num; i++)
file >> Students[i].ID;
file.close();
}
void Save_IDs() {
ofstream file;
file.open("IDs.txt");
for (int i = 0; i < Students_num; i++)
{
file << Students[i].ID << ' ';
}
file.close();
}
void Restoring_Emails_from_file() {
ifstream file("Emails.txt");
for(int i = 0; i < Students_num; i++)
file >> Students[i].email;
file.close();
}
void Save_Emails() {
ofstream file;
file.open("Emails.txt");
for (int i = 0; i < Students_num; i++)
{
file << Students[i].email << ' ';
}
file.close();
}
void Restoring_passwords_from_file() {
ifstream file("Passwords.txt");
int passwords_num = 0;
for(int i = 0; i < Students_num; i++)
getline(file, Students[i].password);
file.close();
}
void Save_passwords() {
ofstream file;
file.open("passwords.txt", ios::out);
for (int i = 0; i < Students_num; i++)
{
file << Students[i].password << endl;
}
file.close();
}
void Restoring_First_names_from_file() {
ifstream file("First_names.txt");
for (int i = 0; i < Students_num; i++)
file >> Students[i].first_name;
file.close();
}
void Save_First_names() {
ofstream file;
file.open("First_names.txt");
for (int i = 0; i < Students_num; i++)
{
file << Students[i].first_name << ' ';
}
file.close();
}
void Restoring_Last_names_from_file() {
ifstream file("Last_names.txt");
int Last_names_num = 0;
for (int i = 0; i < Students_num; i++)
file >> Students[i].last_name;
file.close();
}
void Save_Last_names() {
ofstream file;
file.open("Last_names.txt");
for (int i = 0; i < Students_num; i++)
{
file << Students[i].last_name << ' ';
}
file.close();
}
void Restoring_borrowed_books_nums_from_file() {
ifstream file;
file.open("borrowed_books_num.txt");
for (int i = 0; i < Students_num; i++) {
file >> Students[i].borrowed_books_num;
}
}
void Save_borrowed_books_nums() {
ofstream file;
file.open("borrowed_books_num.txt");
for (int i = 0; i < Students_num; i++) {
file << Students[i].borrowed_books_num << ' ';
}
}
void Restoring_borrowed_books_from_file() {
ifstream file("borrowed_books.txt");
for (int i = 0; i < Students_num; i++) {
for (int j = 0; j < Students[i].borrowed_books_num; j++) {
file >> Students[i].borrowed_books[j];
}
}
file.close();
}
void Save_borrowed_books() {
ofstream file;
file.open("borrowed_books.txt");
for (int i = 0; i < Students_num; i++)
{
for (int j = 0; j < Students[i].borrowed_books_num; j++)
file << Students[i].borrowed_books[j] << ' ';
file << endl;
}
file.close();
}
//~ Books DataBase
void Restoring_Codes_from_file() {
ifstream file("Codes.txt");
for (int i = 0; i < Books_num; i++)
file >> Books[i].code;
file.close();
}
void Save_Codes() {
ofstream file;
file.open("Codes.txt");
for (int i = 0; i < Books_num; i++)
{
file << Books[i].code << ' ';
}
file.close();
}
void Restoring_Names_from_file() {
ifstream file("Names.txt");
for (int i = 0; i < Books_num; i++)
getline(file, Books[i].name);
file.close();
}
void Save_Names() {
ofstream file;
file.open("Names.txt");
for (int i = 0; i < Books_num; i++)
{
file << Books[i].name << endl;
}
file.close();
}
void Restoring_authors_from_file() {
ifstream file("authors.txt");
for (int i = 0; i < Books_num; i++)
getline(file, Books[i].author);
file.close();
}
void Save_authors() {
ofstream file;
file.open("authors.txt");
for (int i = 0; i < Books_num; i++)
{
file << Books[i].author << endl;
}
file.close();
}
void Restoring_categorys_from_file() {
ifstream file("categorys.txt");
for (int i = 0; i < Books_num; i++)
file >> Books[i].category;
file.close();
}
void Save_categorys() {
ofstream file;
file.open("categorys.txt");
for (int i = 0; i < Books_num; i++)
{
file << Books[i].category << endl;
}
file.close();
}
void Restoring_editions_from_file() {
ifstream file("editions.txt");
for (int i = 0; i < Books_num; i++)
file >> Books[i].edition;
file.close();
}
void Save_editions() {
ofstream file;
file.open("editions.txt");
for (int i = 0; i < Books_num; i++)
{
file << Books[i].edition << endl;
}
file.close();
}
void Restoring_Available_to_borrow_from_file() {
ifstream file("Available_to_borrow.txt");
for (int i = 0; i < Books_num; i++)
file >> Books[i].available_to_borrow;
file.close();
}
void Save_Available_to_borrow() {
ofstream file;
file.open("Available_to_borrow.txt");
for (int i = 0; i < Books_num; i++)
{
file << Books[i].available_to_borrow << endl;
}
file.close();
}
void Restore_All() {
Resotring_Nums();
Restoring_IDs_from_file();
Restoring_Emails_from_file();
Restoring_passwords_from_file();
Restoring_First_names_from_file();
Restoring_Last_names_from_file();
Restoring_borrowed_books_nums_from_file();
Restoring_borrowed_books_from_file();
Restoring_Codes_from_file();
Restoring_Names_from_file();
Restoring_authors_from_file();
Restoring_categorys_from_file();
Restoring_editions_from_file();
Restoring_Available_to_borrow_from_file();
}
void Save_All() {
Save_Nums();
Save_IDs();
Save_Emails();
Save_passwords();
Save_First_names();
Save_Last_names();
Save_borrowed_books_nums();
Save_borrowed_books();
Save_Codes();
Save_Names();
Save_authors();
Save_categorys();
Save_editions();
Save_Available_to_borrow();
}