src/linetypes/comment.h

Tue, 28 Sep 2021 00:10:29 +0300

author
Teemu Piippo <teemu@hecknology.net>
date
Tue, 28 Sep 2021 00:10:29 +0300
changeset 141
185eb297dc1e
parent 132
488d0ba6070b
permissions
-rw-r--r--

Saving works now

#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