explicit constructor init
This commit is contained in:
parent
a964d703fc
commit
0a11b3c4d3
2 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@ ProtoProjet::ProtoProjet() { std::cout << "Hello, protoProject!\n"; }
|
||||||
|
|
||||||
ProtoProjet::~ProtoProjet() {}
|
ProtoProjet::~ProtoProjet() {}
|
||||||
|
|
||||||
ProtoProjet::ProtoProjet(const ProtoProjet &) {}
|
ProtoProjet::ProtoProjet(const ProtoProjet &) : Projet() {}
|
||||||
|
|
||||||
const ProtoProjet &ProtoProjet::operator=(const ProtoProjet &src) {
|
const ProtoProjet &ProtoProjet::operator=(const ProtoProjet &src) {
|
||||||
if (this == &src) {
|
if (this == &src) {
|
||||||
|
|
|
@ -4,7 +4,7 @@ RunProjet::RunProjet() { std::cout << "Hello, runProject!\n"; }
|
||||||
|
|
||||||
RunProjet::~RunProjet() {}
|
RunProjet::~RunProjet() {}
|
||||||
|
|
||||||
RunProjet::RunProjet(const RunProjet &) {}
|
RunProjet::RunProjet(const RunProjet &) : ProtoProjet() {}
|
||||||
|
|
||||||
const RunProjet &RunProjet::operator=(const RunProjet &src) {
|
const RunProjet &RunProjet::operator=(const RunProjet &src) {
|
||||||
if (this == &src) {
|
if (this == &src) {
|
||||||
|
|
Reference in a new issue