Wed, 22 Jan 2020 00:23:29 +0200
at least VAOs work now
#pragma once #include "object.h" namespace linetypes { class MetaCommand; } class linetypes::MetaCommand : public Object { public: MetaCommand() = default; MetaCommand(QStringView text); QVariant getProperty(Property property) const override; SetPropertyResult setProperty( Property property, const QVariant& value) override; QString textRepresentation() const override; private: QString storedText = ""; };