src/objecttypes/metacommand.h

changeset 8
44679e468ba9
child 13
6e838748867b
equal deleted inserted replaced
7:68443f5be176 8:44679e468ba9
1 #pragma once
2 #include "modelobject.h"
3
4 namespace modelobjects
5 {
6 class MetaCommand;
7 }
8 class modelobjects::MetaCommand : public BaseObject
9 {
10 public:
11 MetaCommand() = default;
12 MetaCommand(QStringView text);
13 QVariant getProperty(Property property) const override;
14 SetPropertyResult setProperty(
15 Property property,
16 const QVariant& value) override;
17 QString textRepresentation() const override;
18 private:
19 QString storedText = "";
20 };

mercurial