22 lines
755 B
C++
22 lines
755 B
C++
#include "Artwork.h"
|
|
|
|
Artwork::Artwork(std::string title, std::string description, int price, int year, std::shared_ptr<Artist>artist, double width, double height, double depth) :
|
|
title(title), description(description), price(price), year(year), artist(artist), dimension(width, height, depth){}
|
|
|
|
std::string Artwork::toString() const {
|
|
return "Title: " + title +
|
|
"\nDescription: " + description +
|
|
"\nPrice: " + std::to_string(price) +
|
|
" EUR\nYear: " + std::to_string(year) +
|
|
"\nArtist: " + artist->toString() +
|
|
"\nDimension: " + dimension.toString() + "\n\n";
|
|
}
|
|
|
|
int Artwork::getPrice() const {
|
|
return price;
|
|
}
|
|
|
|
int Artwork::getYear() const {
|
|
return year;
|
|
}
|