diff -r 6988973515d2 -r ca23936b455b src/linetypes/errorline.h --- a/src/linetypes/errorline.h Wed May 25 20:36:34 2022 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,28 +0,0 @@ -#pragma once -#include "object.h" - -namespace ldraw -{ - class ErrorLine; -} - -class ldraw::ErrorLine : public Object -{ -public: - using BaseClass = Object; - ErrorLine(QStringView text = u"", QStringView message = u""); - QVariant getProperty(Property property) const override; - QString textRepresentation() const override; - QBrush textRepresentationForeground() const override; - QBrush textRepresentationBackground() const override; - Type typeIdentifier() const override; - QDataStream& serialize(QDataStream& stream) const override; - QDataStream& deserialize(QDataStream& stream) override; - QString toLDrawCode() const override; - QString iconName() const override; - QString typeName() const override; - QString text; - QString message; -protected: - void setProperty(SetPropertyResult* result, const PropertyKeyValue& pair) override; -};