#include #include medDisplayPosContours::medDisplayPosContours() :nodes(QVector()), label(-1) { } medDisplayPosContours::medDisplayPosContours(qint32 label, QVector coordinates) :nodes(std::move(coordinates)), label(label) { } medDisplayPosContours::medDisplayPosContours(const medDisplayPosContours &other) { label = other.label; nodes = other.nodes; } void medDisplayPosContours::setNodes(QVector& coords) { nodes = coords; } void medDisplayPosContours::setLabel(qint32 iLabel) { label = iLabel; }