Wed, 18 Mar 2020 15:52:16 +0200
refactor, added splitter
#pragma once #include "object.h" namespace ldraw { class ErrorLine; } class ldraw::ErrorLine : public Object { public: ErrorLine(QStringView text = u"", QStringView message = u""); QVariant getProperty(Property property) const override; SetPropertyResult setProperty( Property property, const QVariant& value) override; QString textRepresentation() const override; QBrush textRepresentationForeground() const override; QBrush textRepresentationBackground() const override; QString text; QString message; };