Wed, 22 Jan 2020 22:41:17 +0200
modelview matrix set up
#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 = ""; };