| 12 | #include <QDebug> |
| 13 | |
| 14 | struct Group |
| 15 | { |
| 16 | Group(const QString &id) |
| 17 | : id(id) {} |
| 18 | QString id; |
| 19 | QList<QObject *> items; // Command * or ActionContainer * |
| 20 | }; |
| 21 | |
| 22 | class ActionContainerPrivate : public QObject |
| 23 | { |
no outgoing calls
no test coverage detected