src/linetypes/comment.h

Wed, 25 Mar 2020 16:07:20 +0200

author
Teemu Piippo <teemu@hecknology.net>
date
Wed, 25 Mar 2020 16:07:20 +0200
changeset 87
93ec4d630346
parent 35
98906a94732f
child 132
488d0ba6070b
permissions
-rw-r--r--

added PolygonObject and refactored away a lot of boilerplate

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

namespace ldraw
{
	class Comment;
}

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

mercurial