Tue, 28 Sep 2021 22:17:52 +0300
Fix handling of "BFC INVERTNEXT" with multiple inner whitespaces
#pragma once #include "object.h" namespace ldraw { class MetaCommand; } class ldraw::MetaCommand : public Object { public: using BaseClass = Object; MetaCommand() = default; MetaCommand(QStringView text); QVariant getProperty(Property property) const override; QString textRepresentation() const override; QString storedText = ""; Type typeIdentifier() const override; QDataStream& serialize(QDataStream& stream) const override; QDataStream& deserialize(QDataStream& stream) override; QString toLDrawCode() const override; protected: void setProperty(SetPropertyResult* result, const PropertyKeyValue& pair) override; };