cleanup master

This commit is contained in:
Jonas Mucke
2019-12-04 17:48:58 +01:00
parent 5356c95595
commit 15c5f9883d
40 changed files with 4694 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
#ifndef INTELLIRASTER_H
#define INTELLIRASTER_H
#include"Image/IntelliImage.h"
class IntelliRasterImage : public IntelliImage{
public:
IntelliRasterImage(int weight, int height);
virtual ~IntelliRasterImage() override;
//returns the filtered output
virtual QImage getDisplayable(const QSize& displaySize) override;
virtual QImage getDisplayable() override;
//sets the data for the visible image
virtual void setPolygon(const std::vector<QPoint>& polygonData) override;
};
#endif