Sun, 26 Jan 2020 01:06:27 +0200
fix default angle
#pragma once #include "object.h" namespace linetypes { class MetaCommand; } class linetypes::MetaCommand : public Object { public: MetaCommand() = default; MetaCommand(QStringView text); QVariant getProperty(Property property) const override; SetPropertyResult setProperty( Property property, const QVariant& value) override; QString textRepresentation() const override; private: QString storedText = ""; };