src/linetypes/metacommand.h

Fri, 06 Mar 2020 23:45:44 +0200

author
Teemu Piippo <teemu@hecknology.net>
date
Fri, 06 Mar 2020 23:45:44 +0200
changeset 72
7c27cda03747
parent 35
98906a94732f
child 77
028798a72591
permissions
-rw-r--r--

stretch the grid quadrilateral less, hopefully this makes fragments small enough even on integrated

#pragma once
#include "object.h"

namespace ldraw
{
	class MetaCommand;
}
class ldraw::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 = "";
};

mercurial