You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
410 B
C++
19 lines
410 B
C++
#ifndef NMCALCULATIONGEODATAOUTLINE_H
|
|
#define NMCALCULATIONGEODATAOUTLINE_H
|
|
|
|
#include <QPointF>
|
|
#include <QVector>
|
|
|
|
class nmCalculationGeoDataOutline
|
|
{
|
|
public:
|
|
nmCalculationGeoDataOutline(const QVector<QPointF> points);
|
|
const QVector<QPointF> &points() const;
|
|
void setPoints(const QVector<QPointF> &newVPoints);
|
|
|
|
private:
|
|
QVector<QPointF> m_vPoints;
|
|
};
|
|
|
|
#endif // NMCALCULATIONGEODATAOUTLINE_H
|