-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathday3_YoutubeChannelManagment.cpp
More file actions
60 lines (58 loc) · 1.51 KB
/
day3_YoutubeChannelManagment.cpp
File metadata and controls
60 lines (58 loc) · 1.51 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
54
55
56
57
58
59
60
#include<iostream>
#include<list>
using namespace std;
class youTubeChannel{
private:
string Name;
int subCounter=0;
list<string> uploadVideo;
//use protected access specifier because ownerName data meber can use in funnyChannel class
protected:
string ownerName;
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);
}
};
class funnychannel : public youTubeChannel{
public:
funnychannel(string name,string owner_name):youTubeChannel(name,owner_name){
}
void about()
{
cout<<endl<<ownerName<<" is a owner of this channel"<<endl;
}
};
int main()
{
//For child class
funnychannel fun("Mahara","Ena");
fun.publishVideo("Hirak Raja");
fun.Subscribe();
fun.about();
return 0;
}