Mon, 23 Sep 2019 14:06:36 +0300
added regular expressions for the parser
#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; };