src/linetypes/comment.h

Mon, 09 Mar 2020 14:21:54 +0200

author
Teemu Piippo <teemu@hecknology.net>
date
Mon, 09 Mar 2020 14:21:54 +0200
changeset 73
97df974b5ed5
parent 35
98906a94732f
child 132
488d0ba6070b
permissions
-rw-r--r--

ldraw::Id is now templated for extra type safety

#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