src/linetypes/comment.h

changeset 176
cd9d6bf6f649
parent 174
3016b494685c
child 177
f69d53c053df
equal deleted inserted replaced
174:3016b494685c 176:cd9d6bf6f649
1 #pragma once
2 #include "object.h"
3 #include "metacommand.h"
4
5 namespace ldraw
6 {
7 class Comment;
8 }
9
10 class ldraw::Comment : public MetaCommand
11 {
12 using MetaCommand::MetaCommand;
13 QFont textRepresentationFont() const override;
14 Type typeIdentifier() const override;
15 QString toLDrawCode() const override;
16 };

mercurial