src/linetypes/comment.h@b497f5e66749
src/linetypes/comment.h
Sun, 06 Mar 2022 10:32:54 +0200
- author
- Teemu Piippo <teemu@hecknology.net>
- date
- Sun, 06 Mar 2022 10:32:54 +0200
- changeset 171
- b497f5e66749
- parent 141
-
185eb297dc1e
- permissions
- -rw-r--r--
add missing file
#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;
};