-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfacebook.cpp
More file actions
33 lines (31 loc) · 964 Bytes
/
facebook.cpp
File metadata and controls
33 lines (31 loc) · 964 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
#include "header_Files.h"
#include "SignIN_UP.h"
#include "friends.h"
int main(){
login log;
if(log.check()){
int x,y;
Friends fri; // Friends and Followers Object
Page pg;
x=fri.friends_Entry();
if(x==3){
fri.Followers();
}
if(x==4){
Group grp; // Group Object
y=grp.create();
if(y==3){
pg.new_page(fri);
}
if(y==5){
system("clear");
cout<<endl<<" -----------------------------------"<<endl;
cout<<" ---Good bye from your facebook account---";
cout<<endl<<" -------------------------------------"<<endl;
cout<<endl<<"__________________________________________________________"<<endl<<endl<<endl;
return 0;
}
}
}
return 0;
}