Sun, 03 Nov 2019 13:18:55 +0200
added matrix conversions and datastream operators
#include "metacommand.h" modelobjects::MetaCommand::MetaCommand(QStringView text) : BaseObject{}, storedText{text.toString()} {} QVariant modelobjects::MetaCommand::getProperty(Property property) const { switch (property) { case Property::Text: return storedText; default: return BaseObject::getProperty(property); } } auto modelobjects::MetaCommand::setProperty(Property property, const QVariant& value) -> SetPropertyResult { switch (property) { case Property::Text: storedText = value.toString(); return SetPropertyResult::Success; default: return BaseObject::setProperty(property, value); } } QString modelobjects::MetaCommand::textRepresentation() const { return this->storedText; }