-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathday2_YoutubeChannelManagment.cpp
More file actions
66 lines (65 loc) · 1.68 KB
/
day2_YoutubeChannelManagment.cpp
File metadata and controls
66 lines (65 loc) · 1.68 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
61
62
63
64
65
66
#include<iostream>
#include<list>
using namespace std;
class youTubeChannel{
private:
string Name;
string ownerName;
int subCounter=0;
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);
}
};
class funnychannel : public youTubeChannel{
public:
funnychannel(string name,string ownerName):youTubeChannel(name,ownerName){
}
void about()
{
cout<<endl<<"This channel is created to give fun."<<endl;
}
};
int main()
{
//For child class
funnychannel fun("Mahara","Ena");
fun.publishVideo("Hirak Raja");
fun.Subscribe();
fun.getData();
fun.about();
//For base class
cout<<endl<<endl;
youTubeChannel ytchanel("Code Master","sudarshan");
ytchanel.Subscribe();
ytchanel.Unsubscribe();
ytchanel.publishVideo("Java");
//we can not use about() method in this object;
ytchanel.getData();
return 0;
}