src/linetypes/comment.h

Thu, 03 Mar 2022 11:42:52 +0200

author
Teemu Piippo <teemu@hecknology.net>
date
Thu, 03 Mar 2022 11:42:52 +0200
changeset 150
b6cbba6e29a1
parent 141
185eb297dc1e
permissions
-rw-r--r--

extract polygon cache out of Model

#pragma once
#include "object.h"
#include "metacommand.h"

namespace ldraw
{
	class Comment;
}

class ldraw::Comment : public MetaCommand
{
	using MetaCommand::MetaCommand;
	QFont textRepresentationFont() const override;
	Type typeIdentifier() const override;
	QString toLDrawCode() const override;
};

mercurial