forked from buckyroberts/Source-Code-from-Tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path54_cppBeginners.cpp
More file actions
62 lines (49 loc) · 858 Bytes
/
54_cppBeginners.cpp
File metadata and controls
62 lines (49 loc) · 858 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
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
//This is Mother.h file
#ifndef MOTHER_H
#define MOTHER_H
class Mother
{
public:
Mother();
~Mother();
};
#endif // MOTHER_H
//This is Mother.cpp file
#include <iostream.h>
#include "Mother.h"
#include "Daughter.h"
using namespace std;
Mother::Mother(){
cout<< "I am the mother constructor!" << endl;
}
Mother::~Mother(){
cout<< "mother deconstructor!" << endl;
}
//This is Daughter.h file
#ifndef DAUGHTER_H
#define DAUGHTER_H
class Daughter: public Mother
{
public:
Daughter();
~Daughter();
};
#endif // DAUGHTER_H
//This is Daughter.cpp file
#include <iostream.h>
#include "Mother.h"
#include "Daughter.h"
using namespace std;
void Daughter::dosomething()
{
publicv = 1;
protected = 2;
}
//This is main.cpp file
#include <iostream.h>
#include "Mother.h"
#include "Daughter.h"
using namespace std;
int main(){
Daughter tina;
}