30 lines
648 B
C++
30 lines
648 B
C++
#ifndef NALOGA0201_LITERATURE_H
|
|
#define NALOGA0201_LITERATURE_H
|
|
|
|
#include "Artwork.h"
|
|
#include <iostream>
|
|
|
|
enum class LiteratureType
|
|
{
|
|
Drama, Biography, Poetry, Prose, ScienceFiction,
|
|
};
|
|
|
|
class Literature : public Artwork
|
|
{
|
|
private:
|
|
LiteratureType material;
|
|
public:
|
|
Literature(std::string title, std::string description, int price, int year, std::shared_ptr<Artist> artist, double width, double height, double depth, LiteratureType material);
|
|
|
|
Literature();
|
|
|
|
std::string getMaterial() const;
|
|
|
|
std::string toString() const override;
|
|
|
|
void print() const;
|
|
};
|
|
|
|
|
|
#endif //NALOGA0201_LITERATURE_H
|