PolygonArray.h 384 Bytes
Newer Older
1 2
#pragma once

Valentin Platzgummer's avatar
Valentin Platzgummer committed
3
#include <QString>
4 5

template <class PolygonType, template <class,class...> class ContainerType >
Valentin Platzgummer's avatar
Valentin Platzgummer committed
6
class PolygonArray : public ContainerType<PolygonType> {
7
public:
Valentin Platzgummer's avatar
Valentin Platzgummer committed
8
    explicit PolygonArray() : ContainerType<PolygonType>() {}
9 10
    PolygonArray(const PolygonArray &other) : ContainerType<PolygonType>(other) {}

11
    QString type() const override {return "PolygonArray";}
12
};