src/linetypes/metacommand.h

Mon, 09 Mar 2020 23:42:26 +0200

author
Teemu Piippo <teemu@hecknology.net>
date
Mon, 09 Mar 2020 23:42:26 +0200
changeset 77
028798a72591
parent 35
98906a94732f
child 86
4bec0525ef1b
permissions
-rw-r--r--

added some meta stuff, simplified quadrilateral splitting and tested it

#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;
	QString storedText = "";
};

mercurial