src/linetypes/metacommand.h

Wed, 26 Feb 2020 22:26:05 +0200

author
Teemu Piippo <teemu@hecknology.net>
date
Wed, 26 Feb 2020 22:26:05 +0200
changeset 56
fad4a5dd8dee
parent 35
98906a94732f
child 77
028798a72591
permissions
-rw-r--r--

PartRenderer::modelToScreenCoordinates FINALLY WORKS

#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