Sat, 14 Dec 2019 22:36:06 +0200
added missing files
#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 = ""; };