src/linetypes/comment.h@37f936073cac
src/linetypes/comment.h
Sun, 24 Oct 2021 11:33:32 +0300
- author
- Teemu Piippo <teemu@hecknology.net>
- date
- Sun, 24 Oct 2021 11:33:32 +0300
- changeset 147
- 37f936073cac
- parent 141
-
185eb297dc1e
- permissions
- -rw-r--r--
update
#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;
};