comparison: src/objecttypes/comment.h
src/objecttypes/comment.h
- changeset 14
- 20d2ed3af73d
- parent 13
- 6e838748867b
- child 15
- 9e18ec63eec3
equal
deleted
inserted
replaced
1 #pragma once |
|
2 #include "modelobject.h" |
|
3 #include "metacommand.h" |
|
4 |
|
5 namespace linetypes |
|
6 { |
|
7 class Comment; |
|
8 } |
|
9 |
|
10 class linetypes::Comment : public MetaCommand |
|
11 { |
|
12 using MetaCommand::MetaCommand; |
|
13 QFont textRepresentationFont() const override; |
|
14 }; |
|