Sat, 07 Mar 2020 01:20:36 +0200
negative axes are now drawn in darker color
#pragma once #include "object.h" namespace ldraw { class MetaCommand; } class ldraw::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 = ""; };