diff -r 2bdc3ac5e77c -r 55a55a9ec2c2 src/objecttypes/errorline.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/objecttypes/errorline.h Sun Sep 22 11:51:41 2019 +0300 @@ -0,0 +1,19 @@ +#pragma once +#include "modelobject.h" + +namespace modelobjects +{ + class ErrorLine; +} + +class modelobjects::ErrorLine : public BaseObject +{ +public: + ErrorLine(QStringView text = u""); + QVariant getProperty(Property property) const override; + SetPropertyResult setProperty( + Property property, + const QVariant& value) override; +private: + QString text; +};