25 lines
633 B
C++
25 lines
633 B
C++
//
|
|
// Created by Nik on 16/05/2022.
|
|
//
|
|
|
|
#ifndef NALOGA1002_PAINTINGLITERATURE_H
|
|
#define NALOGA1002_PAINTINGLITERATURE_H
|
|
|
|
#include "Painting.h"
|
|
#include "Literature.h"
|
|
|
|
|
|
class PaintingLiterature : public Painting, public Literature
|
|
{
|
|
public:
|
|
PaintingLiterature() = default;
|
|
|
|
PaintingLiterature(std::string title, std::string description, int price, int year, std::shared_ptr<Artist> artist, double width, double height, double depth, PaintingTechnique technique,
|
|
LiteratureType material);
|
|
|
|
std::string toString() const override;
|
|
};
|
|
|
|
|
|
#endif //NALOGA1002_PAINTINGLITERATURE_H
|