Files
intelliphoto/IntelliPhoto/Painting/Image/IntelliRasterImage.h
2019-11-26 17:26:43 +01:00

19 lines
466 B
C++

#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;
//sets the data for the visible image
virtual void setPolygon(const std::vector<QPoint>& polygonData) override;
};
#endif