#ifndef NALOGA0201_LITERATURE_H #define NALOGA0201_LITERATURE_H #include "Artwork.h" #include 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, 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