src/linetypes/metacommand.h

Mon, 24 Aug 2020 22:51:01 +0300

author
Teemu Piippo <teemu@hecknology.net>
date
Mon, 24 Aug 2020 22:51:01 +0300
changeset 90
e234edb5e613
parent 77
028798a72591
child 86
4bec0525ef1b
permissions
-rw-r--r--

remove dependency on glut, fixes

#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