project load and export

This commit is contained in:
Jonas Mucke
2020-01-23 20:13:43 +01:00
parent 48747c1e8a
commit 8692ccd8a3
10 changed files with 146 additions and 39 deletions

View File

@@ -77,6 +77,14 @@ virtual std::vector<QPoint> getPolygonData() override {
* \param polygonData - The Vertices of the Polygon. Just Planar Polygons are allowed.
*/
virtual void setPolygon(const std::vector<QPoint>& polygonData) override;
/*!
* \brief getPolygon
* \return returns the data of the polygon as points
*/
virtual std::vector<QPoint> getPolygon() override;
};
#endif