consolidate all repos to one for archive
This commit is contained in:
24
semester_2/programiranje_2/naloga1002/PaintingLiterature.h
Normal file
24
semester_2/programiranje_2/naloga1002/PaintingLiterature.h
Normal file
@@ -0,0 +1,24 @@
|
||||
//
|
||||
// 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
|
||||
Reference in New Issue
Block a user