-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRoman.cpp
43 lines (35 loc) · 910 Bytes
/
Roman.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
35
36
37
38
39
40
41
42
//
// Created by Massif on 09/01/2024.
//
#include "Roman.h"
#include <iostream>
#include <string>
using namespace std;
Roman::Roman(const string &auteur, const string &titre, const string &editeur, const string &isbn,
const string &public_vise, const string &genre)
: Livre(auteur, titre, editeur, isbn, public_vise) {
this->genre = genre;
this->type = ROMAN;
code = 0;
}
Roman::Roman(const Roman *r) {
this->code = r->code;
this->auteur = r->auteur;
this->titre = r->titre;
this->editeur = r->editeur;
this->ISBN = r->ISBN;
this->publicVise = r->publicVise;
this->genre = r->genre;
this->type = ROMAN;
}
// Probleme avec affiche
void Roman::affiche() {
Livre::affiche();
cout << "Genre : " << genre << endl;
}
const string &Roman::getGenre() const {
return genre;
}
void Roman::setGenre(const string &g) {
genre = g;
}