Fri, 08 Nov 2019 19:05:07 +0200
things
#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 = ""; };