Renamed folder for poular conventions

- Renamed "Documentation" folder to "docs"
- Renamed "IntelliPhoto" folder to "src"
This commit is contained in:
2019-12-05 18:27:24 +01:00
parent f4fcde045a
commit 5d956769ff
24 changed files with 0 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,int alpha) override;
virtual QImage getDisplayable(int alpha=255) override;
//sets the data for the visible image
virtual void setPolygon(const std::vector<QPoint>& polygonData) override;
};
#endif