Sat, 14 Dec 2019 22:36:06 +0200
added missing files
#pragma once #include "object.h" namespace linetypes { class ErrorLine; } class linetypes::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; private: QString text; QString message; };