[404218]: / Code / C++ / C++ Tutorial Source Files / 40_C++_Inheritance.cpp

Download this file

24 lines (20 with data), 417 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <iostream>
using namespace std;
class Chef {
public:
void makeChicken(){
cout << "The chef makes chicken" << endl;
}
void makeSalad(){
cout << "The chef makes salad" << endl;
}
void makeSpecialDish(){
cout << "The chef makes bbq ribs" << endl;
}
};
int main()
{
Chef chef;
chef.makeChicken();
return 0;
}