-
Notifications
You must be signed in to change notification settings - Fork 0
/
Poesie.cpp
34 lines (26 loc) · 836 Bytes
/
Poesie.cpp
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
//
// Created by User on 13/01/2019.
//
#include "Poesie.h"
#include <iostream>
#include <string>
using namespace std;
Poesie::Poesie(int code, string auteur, string titre, string editeur, string isbn,string public_destine, string style)
: Livre(code, auteur, titre, editeur, isbn, public_destine) {
this->style = style;
this->type = Livre::POESIE;
}
Poesie::Poesie(const Poesie* poesie) : Livre(poesie->getCode(), poesie->getAuteur(), poesie->getTitre(), poesie->getEditeur(), poesie->getIsbn(), poesie->public_destine), style(poesie->getStyle())
{
this->type = Livre::POESIE;
}
const string &Poesie::getStyle() const {
return style;
}
void Poesie::setStyle(const string &style) {
Poesie::style = style;
}
void Poesie::affiche() {
Livre::affiche();
cout<<" | Style :" << getStyle() <<endl;
}