src/linetypes/comment.h@4dea24d3eda0
src/linetypes/comment.h
Tue, 28 Sep 2021 23:07:23 +0300
- author
- Teemu Piippo <teemu@hecknology.net>
- date
- Tue, 28 Sep 2021 23:07:23 +0300
- changeset 145
- 4dea24d3eda0
- parent 141
-
185eb297dc1e
- permissions
- -rw-r--r--
Use QSaveFile to save the file more safely
#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;
};