#include "WimaFlyArea.h" WimaFlyArea::WimaFlyArea(QObject *parent) : QObject(parent) { this->_isReady = false; } WimaFlyArea::WimaFlyArea(const WimaFlyArea &other, QObject *parent): QObject(parent) { *this = other; } const WimaFlyArea& WimaFlyArea::operator=(const WimaFlyArea& other) { this->_flyAreaPolygon = other._flyAreaPolygon; this->_isReady = other._isReady; return *this; } void WimaFlyArea::setReady() { this->_isReady = true; emit readyStateChanged(); }