23 lines
602 B
C++
23 lines
602 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, Artist *artist, double width, double height, double depth, LiteratureType material);
|
|
std::string getMaterial() const;
|
|
std::string toString() const override;
|
|
void print() const;
|
|
};
|
|
|
|
|
|
#endif //NALOGA0201_LITERATURE_H
|