src/linetypes/metacommand.h

Thu, 30 Jan 2020 19:20:11 +0200

author
Teemu Piippo <teemu@hecknology.net>
date
Thu, 30 Jan 2020 19:20:11 +0200
changeset 35
98906a94732f
parent 14
20d2ed3af73d
child 77
028798a72591
permissions
-rw-r--r--

renamed the linetypes namespace to ldraw namespace and added more structures to 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;
private:
	QString storedText = "";
};

mercurial