-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathday1_YoutubeChannelManagment.cpp
More file actions
53 lines (52 loc) · 1.32 KB
/
day1_YoutubeChannelManagment.cpp
File metadata and controls
53 lines (52 loc) · 1.32 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
#include<iostream>
#include<list>
using namespace std;
class youTubeChannel{
private:
string Name;
string ownerName;
int subCounter;
list<string> uploadVideo;
public:
youTubeChannel(string name,string owner_name){
Name=name;
ownerName=owner_name;
}
void getData()
{
cout<<"Name:"<<Name<<endl;
cout<<"Owner Name:"<<ownerName<<endl;
cout<<"Subescriber:"<<subCounter<<endl;
cout<<"Uploaded Video:"<<endl;
for(string video:uploadVideo){
cout<<"\""<<video<<"\" ";
}
}
void Subscribe()
{
subCounter++;
}
void Unsubscribe()
{
if(subCounter>0){
subCounter--;
}
}
void publishVideo(string videoName){
uploadVideo.push_back(videoName);
}
};
int main()
{
youTubeChannel ytchanel("Code Master","sudarshan");
ytchanel.Subscribe();
ytchanel.Subscribe();
ytchanel.Subscribe();
ytchanel.Subscribe();
ytchanel.Unsubscribe();
ytchanel.publishVideo("C++");
ytchanel.publishVideo("C Programming");
ytchanel.publishVideo("Java");
ytchanel.getData();
return 0;
}